17 lines
333 B
C++
17 lines
333 B
C++
#include "MachineTypes.h"
|
|
|
|
uint8 BC_REG_WORK = 0x03;
|
|
uint8 BC_REG_WORK_Y = 0x02;
|
|
uint8 BC_REG_FPARAMS = 0x0d;
|
|
uint8 BC_REG_FPARAMS_END = 0x19;
|
|
|
|
uint8 BC_REG_IP = 0x19;
|
|
uint8 BC_REG_ACCU = 0x1b;
|
|
uint8 BC_REG_ADDR = 0x1f;
|
|
uint8 BC_REG_STACK = 0x23;
|
|
uint8 BC_REG_LOCALS = 0x25;
|
|
|
|
uint8 BC_REG_TMP = 0x43;
|
|
uint8 BC_REG_TMP_SAVED = 0x53;
|
|
|