1
0
mirror of https://github.com/ariejan/i6502.git synced 2025-08-06 01:25:01 +00:00
Files
i6502/memory.go
2014-08-13 09:26:33 +02:00

8 lines
117 B
Go

package i6502
type Memory interface {
Size() uint16
Read(address uint16) byte
Write(address uint16, data byte)
}