1
0
mirror of https://github.com/zellyn/go6502.git synced 2024-09-29 08:56:18 +00:00
go6502/asm/inst/instruction_test.go
2014-08-19 08:22:34 -07:00

70 lines
1.3 KiB
Go

package inst
import (
"testing"
"github.com/zellyn/go6502/asm/context"
"github.com/zellyn/go6502/asm/expr"
"github.com/zellyn/go6502/asm/lines"
)
func TestComputeLabel(t *testing.T) {
i := I{
Label: "L1",
}
c := &context.SimpleContext{}
i.computeLabel(c, false)
}
func TestWidthDoesNotChange(t *testing.T) {
i := I{
Type: TypeOp,
Command: "LDA",
Exprs: []*expr.E{
&expr.E{
Op: expr.OpMinus,
Left: &expr.E{Op: expr.OpLeaf, Text: "L1"},
Right: &expr.E{Op: expr.OpLeaf, Text: "L2"},
},
},
Width: 0x2,
Final: false,
Op: 0xad,
Mode: 0x2,
ZeroMode: 0x80,
ZeroOp: 0xa5,
Line: &lines.Line{},
}
c := &context.SimpleContext{}
c.Set("L1", 0x102)
final, err := i.Compute(c, false)
if err != nil {
t.Fatal(err)
}
if final {
t.Fatal("Second pass shouldn't be able to finalize expression with unknown variable.")
}
if !i.WidthKnown {
t.Fatal("Second pass should have set width.")
}
if i.Width != 3 {
t.Fatalf("i.Width should be 3; got %d", i.Width)
}
c.Set("L2", 0x101)
final, err = i.Compute(c, true)
if err != nil {
t.Fatal(err)
}
if !final {
t.Fatal("Third pass should be able to finalize expression.")
}
if !i.WidthKnown {
t.Fatal("Third pass should left width unchanged.")
}
if i.Width != 3 {
t.Fatalf("i.Width should still be 3; got %d", i.Width)
}
}