By Gilbert Held , 1807M1982 WILEY QUICK REFERENCE GUIDES

Total Page:16

File Type:pdf, Size:1020Kb

By Gilbert Held , 1807M1982 WILEY QUICK REFERENCE GUIDES by Gilbert Held , l:i '\f..AR I 1807m1982 WILEY QUICK REFERENCE GUIDES 2.95 &HL1<;H\~ REFERENCE GUIDE NOTATIONS AND FORMAT CONVENTIONS A standard scheme for presenting the general format of BASIC language state­ ments is employed in this reference guide. Th e capitalization, punctuation and other conventions are listed below: [ ] Brackets indicate that the en­ actual value or wording required. closed items are optional. See Generic Term s and Brackets do not appear in the Abbreviations. actual statements. Line number A line number is im­ } Braces indicate that a choice of plied for all BASIC language one of the enclosed items is to be statements. made. Braces do not appear in Punctuation All punctuation the actual statements. characters, including commas, •.• Ellipses indicate that the preced­ semicolons, colons, quotation ing item may be repeated. marks and parentheses, must Ellipses do not appear in the ac­ appear as indicated. tual statements. UPPER CASE Upper case letters Italics Italics indicate generic terms. and words must appear exactly The programmer must supply the as indicated. APPLE BASIC VERSIONS Applesoft-Comprehensive BASIC tions. Line numbers must be be­ which permits numeric values tween O and 32767. with fractions. Line numbers VIDEO PROMPT CHARACTERS must be between O and 63999. Character Language Integer BASIC-A version of BASIC wh ich limits calculated va lues to * Monitor a range of 32767 to - 32767, > Integer BASIC and does not permit decimal frac- Applesoft GENERIC TERMS AND ABREVIATIONS Arg-Argument. memadr- Th e memory address Bn-A byte number. referenced by a numeric expres­ col-Low resolution graphics column sion, variable or constant. number. O s numeric expression - 65535 10 s range s 65535 10. s 39. memloc-the memory location colh-High resolution graphics specified by an integer constant. column number. O s numeric ex­ 010 ~ range s 65535,o pression s 279. msg- The message denoted by const-Any numeric or string quotes which forms a string. constant. nvar-Numeric variable. Dn-A disk drive number. Must be row-Low resolution graphics row specified as D,0 or D 1. number. 0 s numeric expressions 47. expr-Any valid Apple II expression. rowh-High resolution ·graphics expr$-Any valid Apple II string row number. O s numeric ex- constant, variable or expression. pression s 191 exprnm-Any numeric constant, Rn-Specified field of a file. variable or expression. slot-predefined areas into filenam-A disk file name. which circuit boards plug. format-Format of BASIC language Sn-Slot number for input or output. statement common to both Apple- Osns7 soft and Integer BASIC. sub-Subscript. formata5 -Applesoft BASIC format of BASIC language statement. var-Numeric or string variable in format18-Jnteger BASIC format of Integer BASIC. Numeric, integer BASIC language statement. or string variable in Applesoft. length-Integer ranging from Ji varnm-A numeric variable name. through 32767 decimal. var(subJ-Any subscripted numeric lin-A BASIC program line number. variable in Integer BASIC. Any line,--The ith line number in a subscripted integer, numeric or BASIC program. string variable in Applesoft. Ln-Length in bytes. Integer ranging Vn-A disk volume number. in value from O to 32767 decimal. O s n s 255 APPLE II ® is a registered trademark of Apple Computer, Inc. VARIABLE NAMING CONVENTIONS Applesoft format F {SL} where: Integer BASIC format F{SL} F irst character must be a letter. where: Second character is optional and may First character must be a letter. be a letter or digit. Second character to last character Last character denotes variable type: may be letter(s) or digit(s). $for string variable, % for in­ Last character mu st be a$ for string teger va riable, otherwise real va riable . variable. Name length may be 1 to 100 Name length must be 1, 2 or 3 characters. characters. ARITHMETIC OPERATORS OPERATION INTEGER BASIC APPLESOFT ARITHMETIC Exponentation /\ /\ Unary Minus Multiplication * * Division Division Remainder MOD Not Available Addition + + Subtraction RELATIONAL Equal Not Equal # <>or>< Less than < < Greater than > > Less than or equal < = < =or= < Greater than or equal > = >= or= > BOOLEAN Logical complement NOT NOT Logical AND AND AND Logical OR OR OR SYSTEM COMMANDS AUTO-Integer BASIC command program lines. that sets the automatic line format: DEL line 1, line2 numbering mode. FP-Puts the Apple 11 into Applesoft. format 18: AUTO line [. increment] format: FP[.Dn] [.Sn] [.Vn] CLR-lnteger BASIC command that assigns zero values to all INT-Puts the Apple II into Integer BASIC. variables and array elements. format: INT format18 : CLR LIST-Displays all or a specified portion CON-Integer BASIC command of the program currently in memory. that causes a program to resume format: LIST line 1 L line2] execution at the next instruction line 1 [{-;- }] } following a halt. { formatAs: LIST [linei]{ -;- } /ine2 format18: CON CONT-Applesoft command that MAN-Ends the automatic line causes a program to resume numbering mode in Integer BASIC. execution at the next instruction format : MAN following a halt. 18 MON-Permits the display of disk formatAs: CONT commands and/or data traffic on DEL-Eliminates the specified the video monitor. format: MON [CJ [,I] [,OJ disk commands and/or data flow where: C is specified to display initiated by MON command. disk commands format: NOMON I is specified to display AUN-Executes the current pro­ data flow from disk to gram in memory. If a line number App le II is specified, execution com­ 0 is specified to display mences at that number, other­ data flow from Apple II wise execution begins at the to the disk lowest numbered line in the NEW-De,letes the current program program. and all variables from memory in format: RUN [line] the Apple II. SAVE-Saves the program currently format: NEW in memory on cassette or on disk. NOMON-Ends the video display of See Input/Output control for formats. BASIC LANGUAGE STATEMENTS BRANCHING CALL-Results in a branch to format 18: IF expr THEN statement a machine language subroutine IF expr THEN [GOTO] line at a specified memory location. ON·GOSUB-Causes a conditional format: CALL memadr Applesoft subroutine call. GOSUB-Results in a branch to Branch depends upon the com­ the indicated line number. A puted or current value of the ex­ return statement causes a pression. branch back to the instruction formatAs: ON exprnm GOSUB following the GOSUB. line[, line . ] format: GOSUB line ON-GOTO-Causes a conditional GOTO-Causes an unconditional Applesoft branch based upon the branch to the indicated line current or computed value of the number or the numeric expres­ expression. sion in Integer BASIC. formatAs: ON exprnm GOTO line format: GOTO line [,line ] POP-Causes the most recently ex­ format: 18 : GOTO exprnm ecuted GOSUB to be changed to IF-THEN-Causes a branch a GOTO by removing the return or the execution of a statement location for the last GOSUB to occur if the indicated expres­ statement executed. sion is true. format: POP format: IF expr THEN statement [:statement ] RETURN-Results in a program branch to the statement im­ mediately following the most THEN IF expr GOTO fline recently executed GOSUB lTHEN GOTO statement. format: RETURN ERROR DETEAMl~ATION AND CONTROL DSP-lnteger BASIC statement ONEAA GOTO-Applesoft state­ that displays the changing ment that causes a branch to va lues of a predefined variable the line number indicated if an during program execution. error occurs in the program. format18 : DSP var formatAs: ON ERR GOTO line NO DSP-lnteger BASIC statement AESUME-Applesoft statement that cancels the display mode that causes the program to for a predefined variable. resume at the beginning of an instruction in which an error format : NO DSP var 18 previously occurred. NO TRACE-Turns off the program execution TRACE initiated by a formatAs: RESUME TRACE statement. TRACE-Displays the line number format: NO TRACE of each statement executed. format: TRACE MEMORY REFERENCE CLEAA-Applesoft statement that assigns a null value to all strings. initializes all numeric variables formatAs: CLEAR and array elements to zero and HIMEM-Establishes the highest LOMEM-Establishes the lowest location in RAM memory available location in RAM memory available for use by the BASIC program. for use by the BASIC program. format: HIMEM: exprnm format: LOMEM: exprnm PROCESSING STATEMENTS DATA-Applesoft statement th at LET-Assigns a value to the creates a list of values to be specified variable. assigned to variables through the format: [LET] var = expr use of a READ statement. NEXT-Terminates the loop in­ format: DATA canst[, canst . .. ] itiated by a FOR statement DEF FN-Applesoft statement that format: NEXT varnm [, varnm . permits special purpose functions to be defined. READ-Applesoft statement that assigns values from DATA state­ format : DEF FNnvar (arg) = ments to variables. exprnm formatAs: READ var[. var . .. ] DIM-Reserves space in main memory for an array or string . REM-Nonexecutable statement that permits remarks to be placed formatAs: DIM var(sub[, sub ... ]) in the program. [,var(sub[,sub .]) . ] format: REM remark format18 : DIM var(sub) [, var(sub) RESTORE-Applesoft statement l that resets the DATA list pointer END-Causes the program to to the beginning of the list. terminate. formatAs: RESTORE format: END STOP-Applesoft statement that cau ses FOR-Initiates a loop that repeats the program to halt execution. execution of all instructions bounded by the NEXT statement formatAs: STOP until the automatically in­ WAIT-Applesoft statement that halt s cremented variable attains the a program until a specified memory value exprnm2. location attains a defined value. format: FOR varnm = exprnm1, formatAs: WAIT memadr, exprnm, TO exprnm2 [STEP exprnm3] [,exprnm] INPUT/OUTPUT CONTROL GENERAL GET-Applesoft statement that control device. receives one character from the format: POL (expmm) keyboard without displaying the character.
Recommended publications
  • Mac OS Hacking Professionelle Werkzeuge Und Methoden Zur Forensischen Analyse Des Apple-Betriebssystems
    Alle Übungen im Buch zum Download Marc Brandt Mac OS Hacking Professionelle Werkzeuge und Methoden zur forensischen Analyse des Apple-Betriebssystems • Sicherungs- und Analysetechniken für digitale Spuren • Integrierte Mac-OS-Sicherheitssysteme angreifen und überwinden • Forensische Analysestrategien zu Spotlight, Time Machine und iCloud 60551-9 Titelei.qxp_Layout 1 13.07.17 10:18 Seite 1 Marc Brandt Mac OS Hacking 60551-9 Titelei.qxp_Layout 1 13.07.17 10:18 Seite 3 Marc Brandt Mac OS Hacking Professionelle Werkzeuge und Methoden zur forensischen Analyse des Apple-Betriebssystems • Sicherungs- und Analysetechniken für digitale Spuren • Integrierte Mac-OS-Sicherheitssysteme angreifen und überwinden • Forensische Analysestrategien zu Spotlight, Time Machine und iCloud 60551-9 Titelei.qxp_Layout 1 13.07.17 10:18 Seite 4 Bibliografische Information der Deutschen Bibliothek Die Deutsche Bibliothek verzeichnet diese Publikation in der Deutschen Nationalbibliografie; detaillierte Daten sind im Internet über http://dnb.ddb.de abrufbar. Alle Angaben in diesem Buch wurden vom Autor mit größter Sorgfalt erarbeitet bzw. zusammengestellt und unter Einschaltung wirksamer Kontrollmaßnahmen reproduziert. Trotzdem sind Fehler nicht ganz auszuschließen. Der Verlag und der Autor sehen sich deshalb gezwungen, darauf hinzuweisen, dass sie weder eine Garantie noch die juristische Verantwortung oder irgendeine Haftung für Folgen, die auf fehlerhafte Angaben zurückgehen, überneh- men können. Für die Mitteilung etwaiger Fehler sind Verlag und Autor jederzeit dankbar. Internetadressen oder Ver- sionsnummern stellen den bei Redaktionsschluss verfügbaren Informationsstand dar. Verlag und Autor übernehmen keinerlei Verantwortung oder Haftung für Veränderungen, die sich aus nicht von ihnen zu vertretenden Umständen ergeben. Evtl. beigefügte oder zum Download angebotene Dateien und Informationen dienen ausschließlich der nicht gewerblichen Nutzung.
    [Show full text]
  • Wednesday, April 17, 2013 4000-1200 B.C
    APPLE Wednesday, April 17, 2013 4000-1200 B.C. Inhabitants of 3000 B.C. The abacus is invented the first known in Babylonia. civilization in Sumer keep records of 250-230 B.C. The Sieve of commercial Eratosthenes is used to determine transactions on prime numbers. clay tablets. About 79 A.D. The “Antikythera Archives IBM Device,” when set correctly About 1300 The more familiar wire- according to latitude and day of and-bead abacus replaces the Chinese The University Museum, University of Pennsylvania of University Museum, University The the week, gives alternating calculating rods. 29- and 30-day lunar months. 4000 B.C. — 1300 Wednesday, April 17, 2013 1612-1614 John Napier uses the printed decimal point, devises logarithms, and 1622 William Oughtred 1666 In uses numbered sticks, or Napiers Bones, invents the circular England, for calculating. slide rule on the basis Samuel of Napier’s logarithms. Morland produces a mechanical calculator 1623 William (Wilhelm) that can add Schickard designs a and subtract. “calculating clock” with a gear-driven carry mechanism to aid in Museum Computer The multiplication of multi- 1642-1643 Blaise Pascal creates a gear-driven digit numbers. adding machine called the “Pascalene,” the The Computer Museum Computer The first mechanical adding machine. 1600s Wednesday, April 17, 2013 First Computer Bug - 1945 • Relay switches part of computers • Grace Hopper found a moth stuck in a relay responsible for a malfunction • Called it “debugging” a computer Wednesday, April 17, 2013 1832 Babbage and 1834-35 Babbage shifts his focus to Joseph Clement designing the Analytical Engine. produce a portion of the Difference Engine.
    [Show full text]
  • Apple Programmers
    PROGRAMMER’S AID #1 INSTALLATION AND OPERATING MANUAL TM Apple Utility Programs Published by APPLE COMPUTER INC. 10260 Bandley Drive Cupertino. California 95014 (408) 996—1010 All rights reserved. @1978 by APPLE COMPUTER INC. Reorder APPLE Product #A2L0011 (030—0026) TABLE OF CONTENTS INTRODUCTION XI Features of Programmer s Aid #1 XII How to install the Programmer’s Aid ROM CHAPTER 1 RENUMBER 2 Renumbering an entire BASIC program 2 Renumbering a portion of a BASIC program 4 Comments CHAPTER 2 APPEND 6 Appending one BASIC program to another 6 Comments II CHAPTER 3 TAPE VERIFY (BASIC) 8 VerifyIng a Basic program saved on tape 8 Comments III CHAPTER 4 TAPE VERIFY (Machine Code or Data) 10 Verifying a portion of memory saved on tape 10 Comments IV CHAPTER 5 RELOCATE 12 Part A: Theory of operation 12 Relocating machine—language code 13 Program model 14 Blocks and Segments 15 Code and Data Segments 16 How to use the Code—Relocation feature 18 Part B: Examples of Code relocation 18 Example 1. Straightforward relocation 19 Example 2. Index into Block 20 Example 3. Immediate address reference 20 Example 4. Unusable Block ranges 21 Example 5. Changing the page zero variable allocation 22 Example 6. Split Blocks with cross—referencing 23 Example 7. Code deletion 24 Example 8. Relocating the APPLE II Monitor ($F800-$FFFF) to run in RAM ($800—$FFF) 25 Part C: Further details 25 Technical Information 26 Algorithm used by the Code—Relocation feature 27 Comments V CHAPTER 6 RAM TEST 30 Testing APPLE’s memory 31 Address ranges for standard memory configurations 32.
    [Show full text]
  • A Nybble on the Apple, April 1977, BYTE Magazine
    A Nybble .on the Apple capabilities, I suggested that we sit down and implement a "Color Eater" algorithm with Apple-II's integer BASIC interpreter with color graphics extensions. I had first seen the Color Eater program demonstrated in an advanced graphics research laboratory late in 1975 (the idea of the program is not original with me, and I will provide the source upon request). The Color Eater always lives in the matrix in the color TV display at some point. The Color Eater is a very simple animal. It looks at its nearest neighbors in the color matrix, searching in a clockwise direction for its current "digestible" color. If it finds this color, it moves its location to the matrix position oJ that color, digests it into a new color, and reiterates its search. Occasionally, the Color Eater becomes a very frustrated little animal. It eats itself into a corner and no longer is able to find any digestible colors . When this catastrophe happens, it throws a fit and turns itself into another variety of Color Eater which can eat itself out of the frustration point. The result is a constantly changing random color pattern on the screen, illustrated in one state in this photo made with the Apple-II computer's output to a standard color television. That evening last November, Steve Jobs, Steve Wozniak and I sat down and Notes by Carl Helmers proceeded to use the Apple-II BASIC (which is a 5 K interpreter with 16 bit integer arithmetic) to program the Color Eater Next month, we'll have an article by Steve game.
    [Show full text]
  • (TIL) Apple II Articles
    ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– Apple II Computer Family Technical Information ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– Apple Technical Information Library (TIL) Apple II Articles ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– Date March 1997 ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– Source Compuserve Apple II Computer Family Technical Information Apple Technical Information Library (TIL) Apple II Articles : March 1997 : 1 of 681 ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– ================================================================================ DOCUMENT March 1997 A2TIL.Catalog ================================================================================ Apple ][ Articles from the Apple Technical Information Library March 1997 -- David T. Craig ([email protected]) Columns: 1 - File name 2 - Pages (assumes 60 lines per page) 3 - Lines 4 - Longest line length 5 - Article title A2TIL001.TXT 6 358 84 Apple Tech Info Library Overview: How to Search for Articles A2TIL002.TXT 2 102 75 16K RAM / Language Cards: Alternate Suppliers A2TIL003.TXT 2 105 79 80-Column Text Card: Applesoft Control Codes (11/96) A2TIL004.TXT 1 31 78 80-Column Text Cards: Apple II & II Plus Compatibility (11/96) A2TIL005.TXT 1 27 76 Access II and Apple IIc Plus: No 40-Column Mode A2TIL006.TXT 1 15 77 Access II: Does Not Support VT100 Line Graphics A2TIL007.TXT 1 52 76 Access II: Specifications (Discontinued) A2TIL008.TXT 1 48 78 Apple 3.5 Drive: Description
    [Show full text]
  • Apple II Versus Apple III Hardware Architecture Comments ______
    _______________ Apple /// Computer Historical Information _______________ _____________________________________________________________________________ Apple II versus Apple III Hardware Architecture Comments _____________________________________________________________________________ December 2002 eMail correspondence between Steven Weyhrich Rick Auricchio (Apple) David Craig Compiled by David T Craig on 05 September 2004 __________________________________________________________________________________________ Apple II versus Apple III Hardware Architecture Comments -- December 2002 eMail correspondence between Steven Weyhrich, Rick Auricchio (Apple), David Craig Compiled by David T Craig on 05 September 2004 -- Page 1 of 23 _______________ Apple /// Computer Historical Information _______________ From: Steven Weyhrich Sent: Saturday, December 14, 2002 2:05 PM To: David Craig Subject: CD's I am sorry I didn't e-mail you sooner to let you know that I did receive the package of CD's that you kindly sent to me. What a treasure trove of information you have collected and organized! I have not yet had an opportunity to look at them in detail, but what I have seen looks pretty neat. You seem to be more of a trivia pack rat than even _I_ am! I did notice one item: The Byte magazine "letter from Wozniak" does appear to be a joke by the guy writing the column, rather than a true letter from Wozniak. This may not be news to you, but I thought I'd put my two cents worth. :-) You asked something about whether or not a disassembly of PRODOS had been done anywhere. I had thought that the writers of Beneath Apple ProDOS had published a disassembly listing, but it was only a listing of pertinent parts of the code (what a certain part of the code does, not the disassembly listing of the opcodes).
    [Show full text]
  • Steve Wozniak Column by Jim Rue
    The Merry Prankster of Computing: Steve Wozniak Column By Jim Rue teve “Woz” Wozniak is Club members asked the Steves to build the boards, and so they did— one of the early wizards in Jobs’ parents’ garage. The buyer was responsible for providing Sof computing. When niceties like a case. Two hundred of the Apple I circuit boards were the ‘desktop computer’ was sold. When the Apple II came out, though, buyers of the Apple I were not yet conceived, when even offered a swap. Only a few Apple Is survived. The only known Apple the earlier ‘personal computer’ I that still works went for $14,000 at auction held in 2000. had yet to acquire the name, The proceeds from sales of the Apple Is became seed money for the Woz was already tinkering new company. Apple Computer, Inc. was formed on April 1, 1976. with microprocessors. The Shortly afterward, new partners provided for the hiring of thousands of son of a Lockheed aerospace employees and the manufacture of thousands of Apple IIs (also engineer, Woz was an elec- designed by Wozniak), and Jobs and Wozniak dove down the rabbit tronics prodigy. He got his hole into commercial and technical stardom. ham radio license before he It is notable that Apple Computer began doing business on April 1. was twelve and designed cir- It is in keeping with the thought processes of Steve Wozniak that this cuits for a childhood hobby. would be the date. The same was true for the cost of the Apple I. They At an early age he built a sold them for $666.66 each.
    [Show full text]
  • Applecat Archive of Apple & Mac Systems & Software Archive Of
    0 applecat apple service case with tools & software to check apple computers 0 archive of apple & mac systems & software dos-prodos-sos-lisa os-newton -macos 0>X & software II, III ... 0 archive of computers & hardware info of each item i own, manuals, tutorials, guides, pictures 0 archive of other apple & macintosh items info other apple & mac, introduction apple & mac ... 0 original apple Historical DVD set volume 1 DVD 0 original apple Historical DVD set volume 2 DVD 0 original apple Historical DVD set volume 3 DVD 0 original apple Historical DVD set volume 4 DVD 0 original apple Historical DVD set volume 5 DVD 0 original apple Historical DVD set volume 6 DVD 0 original apple Historical DVD set volume 7 DVD 0 original apple Historical DVD set volume 8 DVD 0 original apple II Balloon software apple IIgs 0 original apple II Easy Writer software Apple II Easy Writer - mailer - complete 0 original apple II manual red book apple II manual “the must have” 1978 0 original apple II manuals apple II IIe IIgs ..... 0 original apple II shrinkit II works with osX classic to (de)compress apple II shrinkIt archives 0 original apple II’s Flight Simulator II original packed flight simulator II for apple II 0 original apple II’s & III apple II III IIe IIc IIgs ..... 0 original apple III access software 0 original apple III basic vol1 & 2 software 0 original apple III DVD set 2 DVD’s The Apple /// In Ten EZ Lessons 0 original apple III E-Z pieces software Database - word processing - spreadsheet 0 original apple III script software 0 original apple III Visicalc software original packed Visicalc for apple III 0 original apple III Visicalc software advanced original packed Visicalc for apple III advanced version 0 original apple service guides service source CD’s service guide books mactest diskettes 0 original CD set techservice manuals (3CD) 1200 manuals 0 original macintosh bag 128k 3 the computer which came out of that bag was a..
    [Show full text]
  • Um Estudo Sobre As Estratégias Discursivas Da Marca Apple Na Sociedade De Consumo
    ESCOLA SUPERIOR DE PROPAGANDA E MARKETING – ESPM/SP PROGRAMA DE MESTRADO EM COMUNICAÇÃO E PRÁTICAS DE CONSUMO Ellen Kiss AS (I)MATERIALIDADES DO CONSUMO Um estudo sobre as estratégias discursivas da marca Apple na sociedade de consumo São Paulo 2011 Ellen Kiss AS (I)MATERIALIDADES DO CONSUMO Um estudo sobre as estratégias discursivas da marca Apple na sociedade de consumo Dissertação apresentada à ESPM como requisito parcial para obtenção do título de Mestre em Comunicação e Práticas de Consumo. Orientador: João Anzanello Carrascoza São Paulo 2011 K66 Kiss, Ellen As imaterialidades do consumo : um estudo sobre as estratégias discursivas da marca Apple na sociedade de consumo. / Ellen Kiss. – São Paulo: ESPM, 2011. 164 p. : color. Orientador: João Carrascoza. Dissertação (Mestrado em Comunicação e Práticas de Consumo) − Escola Superior de Propaganda e Marketing, São Paulo, SP, 2011. 1. Comunicação e consumo. 2. Marcas. 3. Discurso. 4. Design. 5. Publicidade. 6. Materialidade. I. Título. II. Kiss, Ellen. III. Carrascoza, João. IV. Escola Superior de Propaganda e Marketing. CDU 659.3 Ellen Kiss AS (I)MATERIALIDADES DO CONSUMO Um estudo sobre as estratégias discursivas da marca Apple na sociedade de consumo Dissertação apresentada à ESPM como requisito parcial para obtenção do título de Mestre em Comunicação e Práticas de Consumo. BANCA EXAMINADORA ____________________________________________________________ Presidente: Profº João Anzanello Carrascoza– ORIENTADOR, ESPM ____________________________________________________________ EXAMINADOR ESPM ____________________________________________________________ EXAMINADOR EXTERNO Aos meus pais que me tanto me ensinaram. Aos meus filhos que continuam me ensinando. AGRADECIMENTOS Agradeço a todos que conviveram e colaboraram comigo, direta ou indiretamente, próximo ou distante, para a concretização deste projeto, entendendo a importância desta realização.
    [Show full text]
  • The Microprocessor and the Personal Computer
    2/18/20 15-292 History of Computing The microprocessor and the personal computer 1 Intel 4004 Considered the world's first microprocessor. 4-bit CPU. It was released November 15th, 1971. The 4004 circuit was built of 2,300 transistors. Originally designed for the Japanese company Busicom to be used in their line of calculators. The chief designers of the chip were Stan Mazor, Federico Faggin and Marcian “Ted” Hoff of Intel and Masatoshi Shima of Busicom. (L to R) Mazor, Faggin, Hoff, Shima 2 1 2/18/20 Intel 4004 • Federico Faggin leaves Intel in 1974 to start Zilog, a rival company (maker of the Z80 microprocessor). • Intel “disowns” his contribution to the invention of the microprocessor in patents and advertising. 3 The first 8-bit microprocessors The 8008 was an early CPU designed and manufactured by Intel, introduced in April 1972. The 8080 was designed and manufactured by Intel, released in April 1974 and sold for $360. The 6800 was produced by Motorola and released shortly after the Intel 8080 in 1975. The 6502 was designed by MOS Technologies and introduced in September 1975. The Z80 was designed and manufactured by Zilog from 1976 onwards. It was widely used both in desktop and embedded computer designs and is one of the most popular CPU's of all time 4 2 2/18/20 Altair 8800 A microcomputer design announced in January 1975, based on the Intel 8080 CPU. Sold as a kit through Popular Electronics Manufactured by Micro Instrumentation Telemetry Systems (MITS) in Abuquerque, NM by Ed Roberts and others.
    [Show full text]
  • Big Mac MACRO­ ASSEMBLER/TED
    • • PRESENTS: Big Mac MACRO­ ASSEMBLER/TED Apple PugetSound Program Library Exchange Big Mac MACRO­ ASSEMBLER/TED by Glen E. Bredon Copyright (c) 1981 This manual is copyrighted. This document may not, in whole or part, be copied, photocopied, reproduced, translated or reduced to any electronic medium or machine readable form without prior written consent from Apple Pugetsound Program Library Exchange. Entire contents Copyright (c) 1981 by Apple Pugetsound Program Library Exchange, a Washington State Corporation. All rights reserved. BIG MAC TABLE OF CONTENTS Section I Quick Reference Command Summary 4 Section 11 Overview 6 A. Assembly Language Whys and Wherefores 6 B. Background and Features 7 C. Suggested Reading 8 Section Ill BIG MAC 9 A. EXEC Mode 9 B. The Editor 11 1. Command Mode 11 2. Add/Insert Mode 15 3. Edit Mode 16 C. The Assem bier 17 1. Number Format 17 2. Source Code Format 18 3. Expressions 18 4. Immediate Data 19 5. Addressing Modes 20 a. 6502 Opcodes 20 b. Sweet 16 Opcodes 20 c. Pseudo Opcodes 21 i. directives 21 ii. format 21 iii. string 23 iv. data, allocation 24 v. conditionals 25 vi . macros 26 6. Variables 26 D. Macros 27 1. Defining a Macro 27 2. Special Variables 18 3. Sample Program 29 E. Symbol Table 30 F. Technical Information 30 1. Important Addresses 30 2. Memory Map 31 3. lnCaseofaCrash 32 4. Using TED 11 Source Files 32 G. Error Messages 33 H. Language Card Version 33 2 Section IV Other Programs 34 A. Sourceror 34 1. Introduction 34 2.
    [Show full text]
  • Apple Announces Faster Iigs Seconds
    tral~ formerly June 1989 Vol. 5. 1'10. 5 ISSN 0885-40 I 7 newstand price: '$2.50 ._._._._._._._._._._._._._.-._._._._._._._._._._._._.-._.-A journal and excbange of Apple H discoveries phOIOCOPY charge per page: $0.15 ProDOS 8 application back to the FInder has been reduced to about 3 Apple announces faster IIgs seconds. This is accomplished by leaving much of as/os in non­ purgeable memory while the ProDOS 8 application runs and vice­ The faster. more powerful IIgs that Apple users everywhere have versa. Since most ProDOS 8 programs don't use IIgs memory. thIS been asking for was on display in Apple 's exhibil al AppleFest Boslon shouldn't be noti ceable, although II co.uld Impact users switching May 5-7. In addition 10 shipping the faster machines 10 new cus­ back and forth between AppleWorks and as/os applications (the tomers (starting sometime this summer) Apple has arranged to AppleWorks desktop will be smaller than under syStem 4.0, but the upgrade the machines of al/ exlstiny custome", for little or ~o co~t. additional.switching speed is worth it). Apple was able to provide Ihe benefits of Its faster IIgs to eXlSti ng SyStem 5.0 indudes version 1.8 of ProDOS 8, whICh comes WIth cuslomers by tweaking the machine's software. rather than it's hard· the delete bug fixed (see our January !$sue, page 4.89). It also ware.
    [Show full text]