From a32dea0a11e1b5608557b21b816de7380c169657 Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Thu, 24 Jul 2025 15:28:44 +0200 Subject: [PATCH] Include batch compiler user program into host program --- host/source.s | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/host/source.s b/host/source.s index 50a9093..d545d0b 100644 --- a/host/source.s +++ b/host/source.s @@ -38,4 +38,8 @@ JMP exit .include "routines/memory/memcpy.s" .include "routines/arithmatic/mult.s" .include "routines/arithmatic/div.s" + +batch_userprog: +.incbin "userprog.bin", 0, 1024 + .include "END.s"