Match Rev 7 Rom organization.

This commit is contained in:
Zellyn Hunter 2013-04-07 20:18:00 -07:00
parent 95f22d22b8
commit a3eced201d
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ func ReadSmallCharacterRomOrDie(filename string) [2048]byte {
for i, b := range bytes {
value[i] = (b ^ 0xff) & 0x7f
value[i+512] = b | 0x80
value[i+1024] = b & 0x7f
value[i+1536] = b & 0x7f
value[i+1024] = b
value[i+1536] = b | 0x80
}
return value
}