Refactor perl code to write file header
[emu8051.git] / src / memory.h
index e8ac7ee..c8761e9 100644 (file)
@@ -67,6 +67,18 @@ memory_sfr_read8(unsigned long address);
 u_int16_t
 memory_sfr_read_dptr(void);
 
+void
+stack_push8(uint8_t value);
+
+void
+stack_push16(uint16_t value);
+
+uint8_t
+stack_pop8(void);
+
+uint16_t
+stack_pop16(void);
+
 void
 DumpMem(char *Address, char *Asize, int memory_id);