aboutsummaryrefslogtreecommitdiff
path: root/basewords_test.go
diff options
context:
space:
mode:
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)
- })
- }
-}