commit ad066240b80d4a7166fcb98bf79da854b900cfb3
parent 967ac9e8ab39b522d1be206de04b0c6eee470e87
Author: Virgil Dupras <hsoft@hardcoded.net>
Date: Fri, 1 Jul 2022 15:44:12 -0400
Boosting available memory
640K ought to be enough to anybody.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dusk.asm b/dusk.asm
@@ -3,11 +3,10 @@ BITS 32
%define CELLSZ 4
%define PS_SZ 0x1000
%define RS_SZ 0x1000
-%define MEMSIZE 0x40000
+%define MEMSIZE 0xa0000
%define SYSCALL_EXIT 1 ; int status
%define SYSCALL_READ 3 ; int fd, void *buf, size_t count
%define SYSCALL_WRITE 4 ; int fd, const void *buf, size_t count
-%define SYSCALL_CHDIR 12 ; const char *path
%macro pspush 1 ; src
sub ebp, CELLSZ