From 97df52bf2fadf41fe73745c99730e0838881b0df Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 17 Apr 2021 23:40:49 -0700 Subject: shell: ctrl-r runs on real screen without a trace We run out of memory fairly early in the course of drawing a chessboard on the whole screen. --- translate_subx_emulated | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'translate_subx_emulated') diff --git a/translate_subx_emulated b/translate_subx_emulated index 7d35a988..85b56436 100755 --- a/translate_subx_emulated +++ b/translate_subx_emulated @@ -29,7 +29,7 @@ cat a.survey |linux/bootstrap/bootstrap run linux/hex > a.bi dd if=/dev/zero of=code.img count=20160 # 512-byte sectors, so 10MB dd if=a.bin of=code.img conv=notrunc -if [ `stat --printf="%s" a.bin` -ge 193536 ] # 6 tracks * 63 sectors per track * 512 bytes per sector (keep this sync'd with boot.subx) +if [ `stat --printf="%s" a.bin` -ge 258048 ] # 8 tracks * 63 sectors per track * 512 bytes per sector (keep this sync'd with boot.subx) then echo "a.bin won't all be loaded on boot" exit 1 -- cgit 1.4.1-2-gfad0 ut summary refs log tree commit diff stats
path: root/setup.py
blob: 17cfc660254610f9e15a304820d12b2ab8958dd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42