1
0
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:
Irmen de Jong 2020-02-04 23:56:58 +01:00
parent 92e0c13c70
commit b4a6709646

View File

@ -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)
}