home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Mecomp Multimedia 2
/
MECOMP-CD-II.iso
/
amiga
/
programmieren
/
e
/
e_v3.3a
/
src.lha
/
Src
/
Pd
/
threads
/
modules
/
geta4.e
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-04-11
|
247 b
|
18 lines
-> geta4.e - store and get the global data pointer kept in register A4
OPT MODULE
EXPORT PROC storea4()
LEA a4storage(PC),A0
MOVE.L A4,(A0)
ENDPROC
EXPORT PROC geta4()
LEA a4storage(PC),A0
MOVE.L (A0),A4
ENDPROC
a4storage:
LONG NIL