diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-08-29 20:39:42 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-08-29 20:43:57 -0700 |
commit | 0633e401f9af46ae961915c601d6a333c1a79994 (patch) | |
tree | b9ed0256f53cae40e355256c55860d3149d89d1f /translate | |
parent | b1dcfb03d00f93999da0225600fe5f9d708e439c (diff) | |
download | mu-0633e401f9af46ae961915c601d6a333c1a79994.tar.gz |
.
Diffstat (limited to 'translate')
-rwxr-xr-x | translate | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/translate b/translate index e9fec574..2ecdbf7b 100755 --- a/translate +++ b/translate @@ -71,8 +71,8 @@ fi dd if=labels of=code.img seek=$DEBUG conv=notrunc # keep this sync'd with abort.subx -## Some space for font data at another well-defined location -cat font.subx |sed 's,#.*,,' |sed 's,/[^ ]*,,' |linux/hex > a.font +## Font data at another well-defined location +cat font.subx |sed 's,/[^ ]*,,' |linux/hex > a.font if [ `stat --printf="%s" a.bin` -ge $(( ($DEBUG - $FONT) * 512 )) ] then |