home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 2 / Deutsche Edition 2.iso / mac / POWERMAC / C64 / SOURCE / Stack.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  170 b   |  5 lines  |  [TEXT/KAHL]

  1. #define Push(z) RAM[sp+256]=z; sp--
  2. #define Pop() ((byte)RAM[++sp+256])
  3. #define PushWord(z) Push((z>>8)&255); Push(z&255)
  4. #define PopWord(z) z=Pop(); z +=(word)256*Pop()
  5.