Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/6502/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=1.0.2
VERSION=1.0.3
CFLAGS=-Wall -O2 -DVERSION=\"$(VERSION)\"

all: aambox6502 aambox_frontend.bin c64_crunched.bin c64_drivecode.bin c64_loader.prg
Expand Down
2 changes: 1 addition & 1 deletion src/6502/c64_frontend.s
Original file line number Diff line number Diff line change
Expand Up @@ -2996,7 +2996,7 @@ reusizemsb
itxt_banner
.asc CH_ARING,"-machine C64 interpreter v"
.asc VERSION
.asc 10,"by Linus ",CH_ARING,"kesson",10,0
.asc 10,"by Linus ",CH_ARING,"kesson and the Dialog Team",10,0
itxt_ldstory
.asc "Preparing story...",10,0
itxt_ldlangdict
Expand Down
33 changes: 33 additions & 0 deletions src/6502/fontdef.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1165,6 +1165,17 @@
........
........

+00b7

........
........
........
...##...
...##...
........
........
........

+00bb

........
Expand Down Expand Up @@ -1737,6 +1748,17 @@
.##..##.
##..##..

+2022

........
........
...##...
..####..
..####..
...##...
........
........

+2039

........
Expand Down Expand Up @@ -1769,3 +1791,14 @@
..##....
...####.
........

+25e6

........
........
...##...
..#..#..
..#..#..
...##...
........
........
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=1.0.2
VERSION=1.0.3
VER_MAJOR=1
VER_MINOR=0
CC = gcc
Expand Down
2 changes: 1 addition & 1 deletion src/js/nodefrontend.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(function(){"use strict";

const VERSION = "1.0.2";
const VERSION = "1.0.3";

const fs = require('fs');
const readline = require('readline');
Expand Down
2 changes: 1 addition & 1 deletion src/js/webfrontend.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<div id="aaaboutmeta" class="aaaboutline"></div> <!-- Filled in by JS -->
<hr />
<div class="aaaboutline">
<a id="aaaboutlink" target="_blank" href="https://github.com/Dialog-IF/aamachine/">&Aring;-machine web interpreter v1.0.2</a>
<a id="aaaboutlink" target="_blank" href="https://github.com/Dialog-IF/aamachine/">&Aring;-machine web interpreter v1.0.3</a>
</div>
<hr />
<div class="aaaboutline">
Expand Down
Loading