aboutsummaryrefslogtreecommitdiff
path: root/basewords_test.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2018-01-07 02:04:36 +0100
committerDimitri Sokolyuk <demon@dim13.org>2018-01-07 02:04:36 +0100
commit861d1ba5caa3fa3becd8a14a5e8848f7267a23a3 (patch)
tree7934812c55c49dfc3b7206f5e7c2d063256dd600 /basewords_test.go
parenta9191403be49cf6fed3127919dcba6f4cc4d9f0a (diff)
cleanup
Diffstat (limited to 'basewords_test.go')
-rw-r--r--basewords_test.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/basewords_test.go b/basewords_test.go
deleted file mode 100644
index a1dd917..0000000
--- a/basewords_test.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package j1
-
-import "testing"
-
-func TestBaseWords(t *testing.T) {
- for word, alu := range BaseWords {
- t.Run(word, func(t *testing.T) {
- buf := make([]uint16, len(alu))
- for i, ins := range alu {
- buf[i] = ins.Compile()
- }
- t.Logf("%4.0X", buf)
- })
- }
-}