aboutsummaryrefslogtreecommitdiff
path: root/basewords_test.go
blob: 769036d0399e335324a7338c7b3a7c2972f5bd0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package j1

import "testing"

func TestBaseWords(t *testing.T) {
	for word, alu := range BaseWords {
		t.Run(word, func(t *testing.T) {
			for _, ins := range alu {
				t.Logf("%4.0X", ins.Compile())
			}
		})
	}
}