riscvemu/cpu_test.go

22 lines
249 B
Go
Raw Normal View History

package riscvemu
import (
"testing"
)
func TestCPU(t *testing.T) {
sw := MemoryWorld{
Ram: make([]byte, 1024),
}
_ = sw.Write32(0, 0b00000000000100000000000001110011) // EBREAK
c := CPUState{
w: &sw,
}
err := c.Step()
panic(err)
}