scemu/fns.h

11 lines
253 B
C
Raw Permalink Normal View History

2025-09-09 15:43:34 +00:00
extern int step(void);
extern u8int memread(u16int);
extern void memwrite(u16int, u8int);
2025-09-09 15:29:39 +00:00
extern void push8(u8int);
extern void push16(u16int);
extern u8int pop8(void);
extern u16int pop16(void);
extern u8int fetch8(void);
2025-09-09 15:43:34 +00:00
extern u16int fetch16(void);