From 2206b1f8641d195a4d562f605f8ea17130a19269 Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Thu, 24 Jul 2025 15:29:08 +0200 Subject: [PATCH] Correct paths to host program listing and build script in USC --- user-side-compiler/populate-asm-functions.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user-side-compiler/populate-asm-functions.lisp b/user-side-compiler/populate-asm-functions.lisp index 6ad339a..83d9dae 100644 --- a/user-side-compiler/populate-asm-functions.lisp +++ b/user-side-compiler/populate-asm-functions.lisp @@ -68,8 +68,8 @@ (parse-asm-declaration main-text) (list name address declaration))))) -(defparameter *program-listing-filepath* #P"../../wip-hugo/program.lst") -(defparameter *program-build-filepath* #P"../../wip-hugo/build.sh") +(defparameter *program-listing-filepath* #P"../host/build/program.lst") +(defparameter *program-build-filepath* #P"../host/build.sh") (defun check-for-asm-build-script () (do ((path *program-build-filepath*))