summaryrefslogtreecommitdiff
path: root/spec/name.fspec
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2018-09-16 10:54:51 +0300
committerJari Vetoniemi <mailroxas@gmail.com>2018-09-19 20:44:55 +0300
commitd98285e367c29ec9eb1cacf5cf424d6910270efd (patch)
tree8b452a322c1acceecffeb647f9774949b17d7516 /spec/name.fspec
parentcc333c5f12a91a894a116130eebb30ed0474db47 (diff)
redesign
Diffstat (limited to 'spec/name.fspec')
-rw-r--r--spec/name.fspec6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/name.fspec b/spec/name.fspec
index d4e0f7c..491c8da 100644
--- a/spec/name.fspec
+++ b/spec/name.fspec
@@ -1,8 +1,8 @@
struct name {
- name: u8[28] | encoding('ascii') str; // The encoding actually depends on ROM region
- id: u32;
+ u8 name[28] | encoding('ascii') str; // The encoding actually depends on ROM region
+ u32 id;
};
struct dat {
- name: struct name[$];
+ struct name name[$];
};