mirror of
https://github.com/irmen/ksim65.git
synced 2025-04-05 07:37:30 +00:00
rom byte loading tweak
This commit is contained in:
parent
92e0c13c70
commit
b4a6709646
@ -27,12 +27,7 @@ class Rom(startAddress: Address, endAddress: Address, initialData: Array<UByte>?
|
||||
load(bytes)
|
||||
}
|
||||
|
||||
fun load(data: Array<UByte>) = data.forEachIndexed { index, byte ->
|
||||
this.data[index] = byte
|
||||
}
|
||||
fun load(data: Array<UByte>) = data.copyInto(this.data)
|
||||
|
||||
fun load(data: ByteArray) = data.forEachIndexed { index, byte ->
|
||||
this.data[index] = if (byte >= 0) byte.toShort()
|
||||
else (256+byte).toShort()
|
||||
}
|
||||
fun load(data: ByteArray) = data.map { (it.toInt() and 255).toShort() }.toTypedArray().copyInto(this.data)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user