JSS Device MemoryW8D16

This device simulates a memory with word size 8-bits and data bus connection 16-bits. This type of memory can be used in 16-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/MemoryW8D16.java

Example configuration


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

Youtube