Files
ivy/frontend/cmd/cmd.h

14 lines
152 B
C
Raw Normal View History

2024-11-01 21:41:44 +00:00
#ifndef CMD_CMD_H_
#define CMD_CMD_H_
enum command_id {
CMD_ROOT,
CMD_ASSEMBLE,
2024-12-13 18:08:53 +00:00
CMD_DISASSEMBLE,
CMD_COMPILE,
2024-11-01 21:41:44 +00:00
CMD_REPL,
CMD_INTERNAL,
2024-11-01 21:41:44 +00:00
};
#endif