Moved Pos to game::exe::pos.

Adding missing instructions `break` + `syscall`.
Added `Func` for the game executable.
`Pos` now implements `serde::{Serialize, Deserialize}`.
This commit is contained in:
2020-10-25 22:46:04 +00:00
parent 233eec4fa1
commit 2d931f10cb
12 changed files with 173 additions and 40 deletions

View File

@@ -80,11 +80,11 @@ use byteorder::{ByteOrder, LittleEndian};
use dcb::{
game::exe::{
instruction::{
Directive, Pos,
Directive,
PseudoInstruction::{self, Nop},
Raw, Register, SimpleInstruction,
},
Instruction,
Instruction, Pos,
},
GameFile,
};