package
0.0.0-20240729032619-48aa4a75b89d
Repository: https://github.com/pevans/erc.git
Documentation: pkg.go.dev

# Functions

NewSegment will return a new memory segment with for a given size.
NewSoftMap returns a newly allocated softmap with valid maps for reads and writes.
No description provided by the author

# Structs

A Segment is a block of memory divided into uint8s.
A SoftMap is a set of read and write function maps, keyed by address.
No description provided by the author

# Interfaces

A Getter can return a byte from a given address.
No description provided by the author
No description provided by the author
A Setter can set the value at a given address to a given byte.

# Type aliases

SoftRead is a type of function that takes an integer address and returns an 8-bit value.
SoftWrite is a type of function that takes an integer address and an 8-bit value and returns nothing.