diff options
author | Oxore <oxore@protonmail.com> | 2023-10-21 07:24:48 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-10-21 07:24:48 +0300 |
commit | 6529ed369f4da544c31aa1db0b23fa4eb4663013 (patch) | |
tree | 87026787bc121faa721823ad65c53f92d73214da /tests/test_sat.S | |
parent | ad54e3c0a58e98927ec7e43418d593412ba6fa9f (diff) |
Impl expr numbers parsing and function type and size
Diffstat (limited to 'tests/test_sat.S')
-rw-r--r-- | tests/test_sat.S | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_sat.S b/tests/test_sat.S new file mode 100644 index 0000000..32ada7b --- /dev/null +++ b/tests/test_sat.S @@ -0,0 +1,7 @@ + .def _fn\ .val _fn\ .scl 3\ .type 0x10024\ .endef +_fn: + nop + .def _fn\ .val .\ .scl -1\ .endef + .def _fn2\ .val -1\ .endef + .def _fn2\ .val 0x100\ .endef + .def _fn2\ .val 0\ .endef |