home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.mac.programmer
- Path: sparky!uunet!spool.mu.edu!wupost!eclnews!cec1!ppc1
- From: ppc1@cec1.wustl.edu (Peter Pui Tak Chiu)
- Subject: assembly lanugage
- Message-ID: <1992Dec26.180708.1796@wuecl.wustl.edu>
- Sender: usenet@wuecl.wustl.edu (News Administrator)
- Nntp-Posting-Host: cec1
- Organization: Washington University, St. Louis MO
- Date: Sat, 26 Dec 1992 18:07:08 GMT
- Lines: 27
-
- hi everyone,
-
- i am trying to write a game on Macintosh using Assembly language.
-
- if i want to use something like this in the MPW on the Mac, what should i do?
- how do i define it, store stuff in it and retrive the stuff in it?
-
- TYPE
- POINT = RECORD
- X,Y:INTEGER
- END;
-
- VAR
- SNAKE: ARRAY[1..10,1..10] OF POINTS;
-
- I would like to define this globally so that i can store stuff into the
- array SNAKE and retrieve it anywhere in my program.
-
- also, what should i do if i want to do floating point math in Assembly?
-
- please email to ppc1@cec1.wustl.edu
-
- thanks in advance.
-
- peter
-
-
-