--- nono/vm/message.h 2026/04/29 17:05:11 1.1.1.1 +++ nono/vm/message.h 2026/04/29 17:05:14 1.1.1.2 @@ -18,10 +18,10 @@ class MessageID enum { NONE = 0, - POWERON, RESET, POWEROFF_EXIT, POWEROFF_RESTART, + POWER_BUTTON, SCSIDEV_LOAD_0, SCSIDEV_LOAD_1, @@ -40,6 +40,15 @@ class MessageID SCSIDEV_UNLOAD_6, SCSIDEV_UNLOAD_7, + FDD_LOAD_0, + FDD_LOAD_1, + FDD_LOAD_2, + FDD_LOAD_3, + FDD_UNLOAD_0, + FDD_UNLOAD_1, + FDD_UNLOAD_2, + FDD_UNLOAD_3, + HOSTCOM_RX, HOSTNET_RX, @@ -77,6 +86,13 @@ class MessageID return MessageID(SCSIDEV_UNLOAD_0 + n); } + static MessageID FDD_LOAD(int n) { + return MessageID(FDD_LOAD_0 + n); + } + static MessageID FDD_UNLOAD(int n) { + return MessageID(FDD_UNLOAD_0 + n); + } + private: int id; };