summaryrefslogtreecommitdiff
path: root/tnslc/compile/isa_x86.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-09-20 00:03:32 -0400
committerKyle Gunger <kgunger12@gmail.com>2022-09-20 00:03:32 -0400
commitbe9813b1062c1f9b2c0d13a76d56c41ba984c1db (patch)
treefbfa5b93495c14c646009c92c3b403e639ad9161 /tnslc/compile/isa_x86.tnsl
parent5582d6427e2bc09b9975615f87cace64ce2d29ca (diff)
Generate a dummy file
Diffstat (limited to 'tnslc/compile/isa_x86.tnsl')
-rw-r--r--tnslc/compile/isa_x86.tnsl32
1 files changed, 0 insertions, 32 deletions
diff --git a/tnslc/compile/isa_x86.tnsl b/tnslc/compile/isa_x86.tnsl
index 1df9902..bc5d43f 100644
--- a/tnslc/compile/isa_x86.tnsl
+++ b/tnslc/compile/isa_x86.tnsl
@@ -14,35 +14,3 @@
EXPRESS OR IMPLIED
#/
-/; gen_x86 (~Node program, {}charp out)
- ;tnsl.io.File o = tnsl.io.writeFile(out)
-
- ;{}uint8 current = gen_head(program)
- /; loop (int i = 0; i < len current) [i++]
- ;o.write(current{i})
- ;/
-
- ;{}uint8 current = gen_data(program)
- /; loop (int i = 0; i < len current) [i++]
- ;o.write(current{i})
- ;/
-
- ;{}uint8 current = gen_text(program)
- /; loop (int i = 0; i < len current) [i++]
- ;o.write(current{i})
- ;/
-
- ;o.close()
-;/
-
-/; gen_data (~Node program) [{}charp]
-
-;/
-
-/; gen_text (~Node program) [{}charp]
-
-;/
-
-/; gen_head (~Node program) [{}charp]
-
-;/