JSS Device MemoryW8D32

This device simulates a memory with word size 8-bits and data bus connection 32-bits. This type of memory can be used in 32-bit architectures, when specifying a memory address will read/write 2 bytes. Internally, data is stored as bytes. Since the word size is 8, an address specifies a byte location. The data is formed by using the specified address as the lower byte in the result.

Options

Implementation

https://github.com/ComputingMongoose/JavaSystemSimulator/blob/main/src/jss/devices/memory/impl/MemoryW8D32.java

Example configuration


{
	"name":"RAM",
	"type":"MemoryW8D32",
	"configuration":[
		{"key":"size", "value":14336},
		{"key":"initialization_policy", "value":"ZERO"}
	]
}

Youtube