diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-06-29 20:15:46 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-06-29 20:15:46 -0400 |
commit | fc5a382661262b4dac085d75739c4ac0601574a7 (patch) | |
tree | a705dcb7387e316a05c5162c0351488bd664e55a /tnslc/compile/arch | |
parent | 2572cd049ee5e1e2685b1abe6bfcfbb8aa988a71 (diff) |
[TNSLC] General updates
Diffstat (limited to 'tnslc/compile/arch')
-rw-r--r-- | tnslc/compile/arch/common.tnsl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tnslc/compile/arch/common.tnsl b/tnslc/compile/arch/common.tnsl index cba0d9f..1ff1c89 100644 --- a/tnslc/compile/arch/common.tnsl +++ b/tnslc/compile/arch/common.tnsl @@ -14,4 +14,9 @@ EXPRESS OR IMPLIED #/ -; struct instruction {}
\ No newline at end of file +# Instructions are always stored in big-endian format internally. +# The settings for the isa/compiler dictate weather the instruction +# data will be reversed when the sections are being written. +; struct instruction { + {}uint8 data +}
\ No newline at end of file |