Skip to content

Commit

Permalink
updated for xa 2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cmosher01 committed Sep 28, 2024
1 parent bd58588 commit 8ab5049
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
./bootstrap
./configure
make
make check
mkdir apple2
cd src
find . -name \*.a65 | xargs cp -v --parents -t ../apple2/
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.61])
AC_INIT([apple2sys],[1.2.0])
AC_INIT([apple2sys],[1.2.1])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR([src/dos/system/common/rwts.m4])
AM_INIT_AUTOMAKE([-Wall -Werror])
Expand Down
2 changes: 1 addition & 1 deletion src/dos/controller/common/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ZERO_SEGS=-bd 0 -bb 0 -bz 0

#arbitrary code seg start (-bt 2048) because -bt 0 tends to cause strange errors
.s65.o65:
$(XA65) -C -M -R -c -bt 2048 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<
$(XA65) -C -MASM -XXA23 -R -c -bt 2048 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<

.o65.r65:
$(LDO65) -bt $(CODE_SEG) $(ZERO_SEGS) -o $@ $(LD65FLAGS) $^
Expand Down
2 changes: 1 addition & 1 deletion src/dos/system/common/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ZERO_SEGS=-bd 0 -bb 0 -bz 0
$(M4) -E -I $(INCDIR) -I $(COMDIR) $(M4FLAGS_LOCAL) $(M4FLAGS) $< >$@

.s65.o65:
$(XA65) -C -M -R -c -bt 2048 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<
$(XA65) -C -MASM -XXA23 -R -c -bt 2048 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<

.o65.r65:
$(LDO65) -bt $(CODE_SEG) $(ZERO_SEGS) -o $@ $(LD65FLAGS) $^
Expand Down
2 changes: 1 addition & 1 deletion src/system/applesoft/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ZEROSEGS=-bd 0 -bb 0 -bz 0
$(M4) -E -I $(INCDIR) $(M4FLAGS) $< >$@

.s65.o65:
$(XA65) -C -M -R -c -bt 0 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<
$(XA65) -C -MASM -XXA23 -R -c -bt 0 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<

.o65.r65:
$(LDO65) -bt $(CODE_SEG) $(ZERO_SEGS) -o $@ $(LD65FLAGS) $^
Expand Down
2 changes: 1 addition & 1 deletion src/system/intbasic/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ZEROSEGS=-bd 0 -bb 0 -bz 0
$(M4) -E -I $(INCDIR) $(M4FLAGS_LOCAL) $(M4FLAGS) $< >$@

.s65.o65:
$(XA65) -C -M -R -c -bt 0 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<
$(XA65) -C -MASM -XXA23 -R -c -bt 0 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<

.o65.r65:
$(LDO65) -bt $(CODE_SEG) $(ZERO_SEGS) -o $@ $(LD65FLAGS) $^
Expand Down
2 changes: 1 addition & 1 deletion src/system/monitor/common/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ZEROSEGS=-bd 0 -bb 0 -bz 0
$(M4) -E -I $(INCDIR) -I $(COMDIR) $(M4FLAGS) $< >$@

.s65.o65:
$(XA65) -C -M -R -c -bt 0 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<
$(XA65) -C -MASM -XXA23 -R -c -bt 0 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<

.o65.r65:
$(LDO65) -bt $(CODE_SEG) $(ZERO_SEGS) -o $@ $(LD65FLAGS) $^
Expand Down
2 changes: 1 addition & 1 deletion src/system/other/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ZEROSEGS=-bd 0 -bb 0 -bz 0
$(M4) -E -I $(INCDIR) $(M4FLAGS) $< >$@

.s65.o65:
$(XA65) -C -M -R -c -bt 0 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<
$(XA65) -C -MASM -XXA23 -R -c -bt 0 $(ZERO_SEGS) -o $@ $(XA65FLAGS) $<

.o65.r65:
$(LDO65) -bt $(CODE_SEG) $(ZERO_SEGS) -o $@ $(LD65FLAGS) $^
Expand Down

0 comments on commit 8ab5049

Please sign in to comment.