Skip to content

Commit

Permalink
Do not build with Lib41
Browse files Browse the repository at this point in the history
Boost no longer uses Lib41. It did not really work so well when using
functions from banks.
  • Loading branch information
hth313 committed Oct 29, 2020
1 parent 027c03b commit 3994bf1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/ladyplus.make
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
MAINFRAME = ../../mainframe/src
OS4 = ../../OS4/src
BOOST41 = ../../boost41/src
LIB41 = ../../lib41/include

VPATH = $(MAINFRAME):$(OS4):$(BOOST41)

Expand All @@ -22,12 +21,12 @@ OBJS = $(SRCS:%.s=%-plus.o)
LADYPLUS = ladyplus.mod

%-plus.o: %.s
asnut -DHP41CX --cpu=newt -I$(OS4) -I$(LIB41) -g --list-file=$(*F)-plus.lst $< -o $@
asnut -DHP41CX --cpu=newt -I$(OS4) -g --list-file=$(*F)-plus.lst $< -o $@

all: $(LADYPLUS)

$(LADYPLUS): $(OBJS) ladyplus.scm ladyplus.moddesc
lnnut -g $(OBJS) --list-file=ladyplus.lst --extra-output-formats=mod2 ladyplus.scm ladyplus.moddesc ../../lib41/src/lib41-os4.a
lnnut -g $(OBJS) --list-file=ladyplus.lst --extra-output-formats=mod2 ladyplus.scm ladyplus.moddesc

clean:
rm $(OBJS) $(MOD)
2 changes: 1 addition & 1 deletion src/ladyplus.scm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
;; Boost
(memory Boost1 (position independent)
(bank 1) (address (#x0 . #xFFF))
(section (BoostFAT #x0) BoostCode BoostCode1 BoostTable Lib41Code
(section (BoostFAT #x0) BoostCode BoostCode1 BoostTable
BoostSecondary1
(ExtensionHandlers #xF00)
(CAT7Shell #xF04)
Expand Down

0 comments on commit 3994bf1

Please sign in to comment.