10 lines
174 B
C
10 lines
174 B
C
#ifndef BIN_CMD_MAP
|
|
#define BIN_CMD_MAP
|
|
|
|
#define CMD_CONST 0x0001
|
|
#define CMD_ADD 0x0004
|
|
#define CMD_SUB 0x0005
|
|
#define CMD_MULT 0x0006
|
|
#define CMD_DIV 0x0007
|
|
|
|
#endif
|