# HG changeset patch # User David Boddie # Date 1318727059 -7200 # Node ID 3ae571b43ba0724ca1c96b2e4bf5bb7be802fa3c # Parent e46ec73973f14fdfdda72dc13e07dfede25a1595 Made it explicit that the version of the game is a tape version. (I was experimenting with a ROM version.) diff -r e46ec73973f1 -r 3ae571b43ba0 build.py --- a/build.py Sat Oct 15 20:52:19 2011 +0200 +++ b/build.py Sun Oct 16 03:04:19 2011 +0200 @@ -230,7 +230,7 @@ data = makesprites.read_sprites(makesprites.chars) files.append(("CHARS", 0x3f00, 0x3f00, data)) - system("ophis mapcode.oph CODE") + system("ophis tapecode.oph CODE") code = open("CODE").read() code_start = 0x1e00 files.append(("CODE", code_start, code_start, code)) diff -r e46ec73973f1 -r 3ae571b43ba0 mapcode.oph --- a/mapcode.oph Sat Oct 15 20:52:19 2011 +0200 +++ b/mapcode.oph Sun Oct 16 03:04:19 2011 +0200 @@ -13,7 +13,6 @@ ; You should have received a copy of the GNU General Public License ; along with this program. If not, see . -.org $1e00 jmp main seeds: .byte 100, 239, 183, 144 ; $ef, $b7, $90, $d6, $89 diff -r e46ec73973f1 -r 3ae571b43ba0 tapecode.oph --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tapecode.oph Sun Oct 16 03:04:19 2011 +0200 @@ -0,0 +1,17 @@ +; Copyright (C) 2011 David Boddie +; +; This program is free software: you can redistribute it and/or modify +; it under the terms of the GNU General Public License as published by +; the Free Software Foundation, either version 3 of the License, or +; (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License +; along with this program. If not, see . + +.org $1e00 +.include "mapcode.oph"