diff --git a/data/print.rom b/data/print.rom new file mode 100644 index 0000000..78360af Binary files /dev/null and b/data/print.rom differ diff --git a/data/serial.rom b/data/serial.rom new file mode 100644 index 0000000..c19e060 Binary files /dev/null and b/data/serial.rom differ diff --git a/data/zeropad0x100.rom b/data/zeropad0x100.rom new file mode 100644 index 0000000..65f57c2 Binary files /dev/null and b/data/zeropad0x100.rom differ diff --git a/tools/store-data b/tools/store-data index 636f79c..fef0353 100755 --- a/tools/store-data +++ b/tools/store-data @@ -13,14 +13,23 @@ data = 'hope' # These must be appended in the exact order indicated by the struct definition # in objstore.h -data += file_data('./data/disk2.rom') -data += file_data('./data/apple2.rom') +data += file_data('./data/print.rom') # $C100 +data += file_data('./data/serial.rom') # $C200 +data += file_data('./data/zeropad0x100.rom') # $C300 +data += file_data('./data/zeropad0x100.rom') # $C400 +data += file_data('./data/zeropad0x100.rom') # $C500 +data += file_data('./data/disk2.rom') # $C600 +data += file_data('./data/disk2.rom') # $C700 +data += file_data('./data/apple2.rom') # $D000 data += file_data('./fonts/apple2-system.bmp') # Let's not keep calling len(data) since we know it won't change over our # iterations data_len = len(data) +print data_len +exit(0) + # This just defines the variable name for the store data sys.stdout.write("static unsigned char store_data[] =\n")