summaryrefslogtreecommitdiff
path: root/spec/emz.fspec
diff options
context:
space:
mode:
Diffstat (limited to 'spec/emz.fspec')
-rw-r--r--spec/emz.fspec7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/emz.fspec b/spec/emz.fspec
new file mode 100644
index 0000000..0fe02a1
--- /dev/null
+++ b/spec/emz.fspec
@@ -0,0 +1,7 @@
+struct emz {
+ header: u8[4] | matches('#EMZ') str;
+ unknown: u32 hex; // most likely redunancy check (crc32?)
+ size: u32;
+ offset: u32; // always 16?
+ data: u8[$] | compression('deflate', size) hex;
+};