mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-11-20 03:31:53 +00:00
8 lines
156 B
C
8 lines
156 B
C
#define POKE(a,b) (*((byte *)(a))=(byte)(b))
|
|
#define PEEK(a) (*((byte *)(a)))
|
|
|
|
#define HIBYTE(c) (>(c))
|
|
#define LOBYTE(c) (<(c))
|
|
|
|
#define NOP asm { nop }
|