mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-11-18 21:08:13 +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 }
|