mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-01 23:20:56 +11:00
20151a97f8
Also made Makefile actually portable.
22 lines
401 B
NASM
22 lines
401 B
NASM
; memt
|
|
;
|
|
; Write all possible values in all possible addresses that follow the end of
|
|
; this program. That means we don't test all available RAM, but well, still
|
|
; better than nothing...
|
|
;
|
|
; If there's an error, prints out where.
|
|
;
|
|
; *** Requirements ***
|
|
; printstr
|
|
; stdioPutC
|
|
;
|
|
; *** Includes ***
|
|
|
|
.inc "user.h"
|
|
jp memtMain
|
|
|
|
.inc "lib/ari.asm"
|
|
.inc "lib/fmt.asm"
|
|
.inc "memt/main.asm"
|
|
USER_RAMSTART:
|