From 648ac74775e9fa0469eea277bb33d1829a3bddb1 Mon Sep 17 00:00:00 2001 From: Lee Fastenau Date: Sat, 13 Apr 2019 09:12:05 -0700 Subject: [PATCH] Add main segment length --- src/main.asm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.asm b/src/main.asm index daa5bca..e62aa71 100644 --- a/src/main.asm +++ b/src/main.asm @@ -6,6 +6,7 @@ processor 6502 incdir "include" + echo "main length:",[main_end-main]d,"bytes" ; **************************************** ; main ; **************************************** @@ -31,3 +32,5 @@ main subroutine include "stdio" include "print" + +main_end \ No newline at end of file