junglejourney

changeset 215:3ae571b43ba0

Made it explicit that the version of the game is a tape version. (I was experimenting with a ROM version.)
author David Boddie <david@boddie.org.uk>
date Sun Oct 16 03:04:19 2011 +0200
parents e46ec73973f1
children cdceac4f5ea8
files build.py mapcode.oph tapecode.oph
diffstat 3 files changed, 18 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/build.py	Sat Oct 15 20:52:19 2011 +0200
     1.2 +++ b/build.py	Sun Oct 16 03:04:19 2011 +0200
     1.3 @@ -230,7 +230,7 @@
     1.4      data = makesprites.read_sprites(makesprites.chars)
     1.5      files.append(("CHARS", 0x3f00, 0x3f00, data))
     1.6  
     1.7 -    system("ophis mapcode.oph CODE")
     1.8 +    system("ophis tapecode.oph CODE")
     1.9      code = open("CODE").read()
    1.10      code_start = 0x1e00
    1.11      files.append(("CODE", code_start, code_start, code))
     2.1 --- a/mapcode.oph	Sat Oct 15 20:52:19 2011 +0200
     2.2 +++ b/mapcode.oph	Sun Oct 16 03:04:19 2011 +0200
     2.3 @@ -13,7 +13,6 @@
     2.4  ; You should have received a copy of the GNU General Public License
     2.5  ; along with this program.  If not, see <http://www.gnu.org/licenses/>.
     2.6  
     2.7 -.org $1e00
     2.8  jmp main
     2.9  
    2.10  seeds:         .byte 100, 239, 183, 144   ; $ef, $b7, $90, $d6, $89
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/tapecode.oph	Sun Oct 16 03:04:19 2011 +0200
     3.3 @@ -0,0 +1,17 @@
     3.4 +; Copyright (C) 2011 David Boddie <david@boddie.org.uk>
     3.5 +;
     3.6 +; This program is free software: you can redistribute it and/or modify
     3.7 +; it under the terms of the GNU General Public License as published by
     3.8 +; the Free Software Foundation, either version 3 of the License, or
     3.9 +; (at your option) any later version.
    3.10 +;
    3.11 +; This program is distributed in the hope that it will be useful,
    3.12 +; but WITHOUT ANY WARRANTY; without even the implied warranty of
    3.13 +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    3.14 +; GNU General Public License for more details.
    3.15 +;
    3.16 +; You should have received a copy of the GNU General Public License
    3.17 +; along with this program.  If not, see <http://www.gnu.org/licenses/>.
    3.18 +
    3.19 +.org $1e00
    3.20 +.include "mapcode.oph"