14 lines
276 B
C
14 lines
276 B
C
|
#ifndef VMAS_H
|
||
|
#define VMAS_H
|
||
|
|
||
|
class VMAddrSpace {
|
||
|
uint8_t stack[0x100], code[0x300], data[0x500];
|
||
|
|
||
|
public:
|
||
|
void assemble(void);
|
||
|
void insStack(uint8_t *buf, uint8_t size);
|
||
|
void insCode(uint8_t *buf, uint8_t size);
|
||
|
void insData(uint8_t *buf, uint8_t size);
|
||
|
};
|
||
|
|
||
|
#endif
|