junglejourney
changeset 91:e95375ec93de
Moved the code up in memory to give it a chance of running on a
high PAGE disk-based machine.
| author | David Boddie <david@boddie.org.uk> |
|---|---|
| date | Wed Aug 31 11:16:32 2011 +0200 |
| parents | 755ccdf0b1a7 |
| children | 75989ead6a55 |
| files | build.py mapcode.oph |
| diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line diff
1.1 --- a/build.py Wed Aug 31 11:03:04 2011 +0200 1.2 +++ b/build.py Wed Aug 31 11:16:32 2011 +0200 1.3 @@ -133,7 +133,7 @@ 1.4 1.5 system("ophis mapcode.oph CODE") 1.6 code = open("CODE").read() 1.7 - code_start = 0x1900 1.8 + code_start = 0x1f00 1.9 1.10 addresses = [] 1.11 i = 0
2.1 --- a/mapcode.oph Wed Aug 31 11:03:04 2011 +0200 2.2 +++ b/mapcode.oph Wed Aug 31 11:16:32 2011 +0200 2.3 @@ -13,7 +13,7 @@ 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 $1900 2.8 +.org $1f00 2.9 jmp main 2.10 2.11 seeds: .byte 100, 239, 33 ; $ef, $b7, $90, $d6, $89
