load: handle MOVABS special case

This commit is contained in:
Michael McLoughlin
2018-11-23 16:14:05 -06:00
parent 2f7c14f061
commit 86373c79ee
2 changed files with 9 additions and 1 deletions

View File

@@ -45,7 +45,7 @@ func (l *LoaderTest) Generate(w io.Writer, is []*inst.Instruction) error {
for _, f := range i.Forms {
as := l.args(i.Opcode, f.Operands)
if as == nil {
p.printf("\t// TODO: %#v\n", f.Operands)
p.printf("\t// TODO: %s %#v\n", i.Opcode, f.Operands)
counts["todo"]++
continue
}