riscvemu/eei.go

18 lines
414 B
Go
Raw Permalink Normal View History

package riscvemu
2022-12-28 00:59:35 +00:00
// EEI (Execution Environment Interface) is the enivronment in which RISC-V
// code is run.
type EEI interface {
ReadByte(addr uint32) (byte, error)
2022-12-28 01:27:12 +00:00
Read16(addr uint32) (uint16, error)
Read32(addr uint32) (uint32, error)
2022-12-28 01:27:12 +00:00
WriteByte(addr uint32, value byte) error
2022-12-28 01:27:12 +00:00
Write16(addr uint32, value uint16) error
Write32(addr, value uint32) error
2022-12-28 01:46:41 +00:00
Syscall() error
MemFence(opcode uint32) error
}