13 lines
134 B
C
13 lines
134 B
C
#ifndef CMD_CMD_H_
|
|
#define CMD_CMD_H_
|
|
|
|
enum command_id {
|
|
CMD_ROOT,
|
|
CMD_ASSEMBLE,
|
|
CMD_COMPILE,
|
|
CMD_REPL,
|
|
CMD_INTERNAL,
|
|
};
|
|
|
|
#endif
|