1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-11 20:29:26 +00:00

The data in objstore_data was not in the correct order.

See also the change in tools/store-data; the system rom was first, when
the disk2 rom should have been first.
This commit is contained in:
Peter Evans 2018-01-08 16:19:41 -06:00
parent 3f59db311b
commit 01174b63dd
2 changed files with 2389 additions and 2389 deletions

File diff suppressed because it is too large Load Diff

View File

@ -13,8 +13,8 @@ data = 'hope'
# These must be appended in the exact order indicated by the struct definition
# in objstore.h
data += file_data('./data/apple2.rom')
data += file_data('./data/disk2.rom')
data += file_data('./data/apple2.rom')
data += file_data('./fonts/apple2-system.bmp')
# Let's not keep calling len(data) since we know it won't change over our
@ -35,7 +35,7 @@ for i in range(0, data_len):
if i == data_len - 1:
break
if i > 0 and (i+1) % 16 == 0:
sys.stdout.write('"\n"')
sys.stdout.write('" // %06x\n"' % (i))
# And we're about done; finish with the last quote, and then terminate with a
# semicolon.