mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 09:58:06 +11:00
21 lines
375 B
NASM
21 lines
375 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
|
|
; printHexPair
|
|
;
|
|
; *** Includes ***
|
|
|
|
#include "user.h"
|
|
.org USER_CODE
|
|
|
|
jp memtMain
|
|
|
|
#include "memt/main.asm"
|