mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-26 15:11:01 +00:00
More flatbuffers progress
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
namespace Debugger;
|
||||
|
||||
table PauseEvent {}
|
||||
|
||||
table RunEvent {
|
||||
singleStep: bool;
|
||||
}
|
||||
|
||||
union Event {
|
||||
PauseEvent,
|
||||
RunEvent,
|
||||
}
|
||||
|
||||
table DebugEvent {
|
||||
event: Event;
|
||||
}
|
||||
|
||||
root_type DebugEvent;
|
||||
|
||||
Reference in New Issue
Block a user