Skip to content

Commit beedc0c

Browse files
committed
Fixes for version 0.5.4-beta2
1 parent 3c9c902 commit beedc0c

File tree

14 files changed

+4024
-173
lines changed

14 files changed

+4024
-173
lines changed

Makefile.am

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ pasmo_SOURCES = \
1818
tap.cpp \
1919
token.h \
2020
token.cpp \
21+
trace.h \
22+
trace.cpp \
2123
tzx.h \
2224
tzx.cpp
2325

Makefile.in

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,14 @@ POST_INSTALL = :
3636
NORMAL_UNINSTALL = :
3737
PRE_UNINSTALL = :
3838
POST_UNINSTALL = :
39+
build_triplet = @build@
40+
host_triplet = @host@
3941
bin_PROGRAMS = pasmo$(EXEEXT)
40-
subdir = .
4142
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
4243
$(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \
43-
ChangeLog INSTALL NEWS depcomp install-sh missing \
44-
mkinstalldirs
44+
ChangeLog INSTALL NEWS config.guess config.sub depcomp \
45+
install-sh missing mkinstalldirs
46+
subdir = .
4547
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
4648
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
4749
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
@@ -55,7 +57,7 @@ binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
5557
PROGRAMS = $(bin_PROGRAMS)
5658
am_pasmo_OBJECTS = asm.$(OBJEXT) asmfile.$(OBJEXT) cpc.$(OBJEXT) \
5759
pasmo.$(OBJEXT) pasmotypes.$(OBJEXT) spectrum.$(OBJEXT) \
58-
tap.$(OBJEXT) token.$(OBJEXT) tzx.$(OBJEXT)
60+
tap.$(OBJEXT) token.$(OBJEXT) trace.$(OBJEXT) tzx.$(OBJEXT)
5961
pasmo_OBJECTS = $(am_pasmo_OBJECTS)
6062
pasmo_LDADD = $(LDADD)
6163
DEFAULT_INCLUDES = -I. -I$(srcdir)
@@ -134,13 +136,21 @@ am__quote = @am__quote@
134136
am__tar = @am__tar@
135137
am__untar = @am__untar@
136138
bindir = @bindir@
139+
build = @build@
137140
build_alias = @build_alias@
141+
build_cpu = @build_cpu@
142+
build_os = @build_os@
143+
build_vendor = @build_vendor@
138144
datadir = @datadir@
139145
datarootdir = @datarootdir@
140146
docdir = @docdir@
141147
dvidir = @dvidir@
142148
exec_prefix = @exec_prefix@
149+
host = @host@
143150
host_alias = @host_alias@
151+
host_cpu = @host_cpu@
152+
host_os = @host_os@
153+
host_vendor = @host_vendor@
144154
htmldir = @htmldir@
145155
includedir = @includedir@
146156
infodir = @infodir@
@@ -176,6 +186,8 @@ pasmo_SOURCES = \
176186
tap.cpp \
177187
token.h \
178188
token.cpp \
189+
trace.h \
190+
trace.cpp \
179191
tzx.h \
180192
tzx.cpp
181193

@@ -299,6 +311,7 @@ distclean-compile:
299311
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spectrum.Po@am__quote@
300312
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tap.Po@am__quote@
301313
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/token.Po@am__quote@
314+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trace.Po@am__quote@
302315
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tzx.Po@am__quote@
303316

304317
.cpp.o:

NEWS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 0.5.4.beta2
2+
3+
Added third pass option and automatic switch to it on phase errors.
4+
5+
Version 0.5.4.beta1
6+
7+
Phase error detection. Debug build option added.
8+
19
Version 0.5.3
210

311
Fixed bug: several errors give exit status 0.

README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
Pasmo, ensablador Z80 cruzado multiplataforma.
10-
(C) 2004-2007 Julián Albo
10+
(C) 2004-2008 Julián Albo
1111
Utilización y distribución permitida bajo la licencia GPL.
1212

1313
Para descargar actualizaciones o obtener más información:
@@ -141,11 +141,11 @@ Comentarios y críticas a: [email protected]
141141

142142

143143
Pasmo, multiplatform Z80 cross-assembler.
144-
(C) 2004-2007 Julián Albo
144+
(C) 2004-2008 Julián Albo
145145
Use and distribution allowed under the terms of the GPL license.
146146

147147
To download updates or obtain more information:
148-
https://pasmo.speccy.org/
148+
http://pasmo.speccy.org/
149149

150150
To compile:
151151
./configure

0 commit comments

Comments
 (0)