mirror of
https://github.com/pfusik/xasm.git
synced 2024-12-22 00:29:15 +00:00
xasm 3.1.1 release.
This commit is contained in:
parent
420a83a897
commit
301b904f60
10
Makefile
10
Makefile
@ -1,4 +1,4 @@
|
|||||||
VERSION = 3.1.0
|
VERSION = 3.1.1
|
||||||
|
|
||||||
prefix = /usr/local
|
prefix = /usr/local
|
||||||
bindir = $(prefix)/bin
|
bindir = $(prefix)/bin
|
||||||
@ -44,13 +44,13 @@ MANIFEST:
|
|||||||
deb:
|
deb:
|
||||||
debuild -b -us -uc
|
debuild -b -us -uc
|
||||||
|
|
||||||
osx: ../xasm-$(VERSION)-osx.dmg
|
osx: ../xasm-$(VERSION)-macos.dmg
|
||||||
|
|
||||||
../xasm-$(VERSION)-osx.dmg: osx/xasm osx/bin
|
../xasm-$(VERSION)-macos.dmg: osx/xasm osx/bin
|
||||||
hdiutil create -volname xasm-$(VERSION)-osx -srcfolder osx -imagekey zlib-level=9 -ov $@
|
hdiutil create -volname xasm-$(VERSION)-macos -srcfolder osx -format UDBZ -fs HFS+ -imagekey bzip2-level=3 -ov $@
|
||||||
|
|
||||||
osx/xasm: source/app.d
|
osx/xasm: source/app.d
|
||||||
mkdir -p osx && dmd -of$@ -O -release -m32 -L-macosx_version_min -L10.6 $< && rm -f osx/xasm.o
|
mkdir -p osx && dmd -of$@ -O -release -L-macosx_version_min -L10.6 $< && rm -f osx/xasm.o
|
||||||
|
|
||||||
osx/bin:
|
osx/bin:
|
||||||
mkdir -p osx && ln -s /usr/bin $@
|
mkdir -p osx && ln -s /usr/bin $@
|
||||||
|
@ -99,7 +99,7 @@ These rights, on this notice, rely.
|
|||||||
Download
|
Download
|
||||||
--------
|
--------
|
||||||
|
|
||||||
[xasm 3.1.0](https://github.com/pfusik/xasm/releases) for Windows, OS X, Ubuntu and Fedora.
|
[xasm 3.1.1](https://github.com/pfusik/xasm/releases) for Windows, macOS, Ubuntu and Fedora.
|
||||||
|
|
||||||
Links
|
Links
|
||||||
-----
|
-----
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
xasm (3.1.1-1) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
* New release.
|
||||||
|
|
||||||
|
-- Piotr Fusik <fox@scene.pl> Wed, 20 Nov 2019 13:30:11 +0100
|
||||||
|
|
||||||
xasm (3.1.0-1) UNRELEASED; urgency=low
|
xasm (3.1.0-1) UNRELEASED; urgency=low
|
||||||
|
|
||||||
* First deb packaging.
|
* First deb packaging.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// xasm 3.1.0 by Piotr Fusik <fox@scene.pl>
|
// xasm 3.1.1 by Piotr Fusik <fox@scene.pl>
|
||||||
// http://xasm.atari.org
|
// http://xasm.atari.org
|
||||||
// Can be compiled with DMD v2.087.1.
|
// Can be compiled with DMD v2.089.0.
|
||||||
|
|
||||||
// Poetic License:
|
// Poetic License:
|
||||||
//
|
//
|
||||||
@ -35,7 +35,7 @@ int readByte(File *file) {
|
|||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
const string TITLE = "xasm 3.1.0";
|
const string TITLE = "xasm 3.1.1";
|
||||||
|
|
||||||
string sourceFilename = null;
|
string sourceFilename = null;
|
||||||
bool[26] options;
|
bool[26] options;
|
||||||
|
@ -686,6 +686,13 @@ and pseudo commands, except for `MWA`, `MWX` and `MWY`:
|
|||||||
HISTORY
|
HISTORY
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
Version 3.1.1 (2019-11-20)
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
- remove partial object file on error (requested by Bill Kendrick)
|
||||||
|
- report label name in the unused label warning (requested by Peter Dell)
|
||||||
|
- support `a:`/`f:` modifiers for `RUN`/`INI`
|
||||||
|
- improved performance with network drives (reported by Marek Pavlik)
|
||||||
|
|
||||||
Version 3.1.0 (2014-07-20)
|
Version 3.1.0 (2014-07-20)
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
- OS X, Ubuntu and Fedora distributions
|
- OS X, Ubuntu and Fedora distributions
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: xasm
|
Name: xasm
|
||||||
Version: 3.1.0
|
Version: 3.1.1
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: 6502 cross-assembler
|
Summary: 6502 cross-assembler
|
||||||
License: Poetic
|
License: Poetic
|
||||||
@ -12,6 +12,8 @@ BuildRoot: %{_tmppath}/%{name}-root
|
|||||||
%description
|
%description
|
||||||
xasm is a 6502 cross-assembler with original syntax extensions.
|
xasm is a 6502 cross-assembler with original syntax extensions.
|
||||||
|
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
@ -31,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_mandir}/man1/xasm.1.gz
|
%{_mandir}/man1/xasm.1.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Nov 20 2019 Piotr Fusik <fox@scene.pl>
|
||||||
|
- 3.1.1-1
|
||||||
|
|
||||||
* Sun Jul 20 2014 Piotr Fusik <fox@scene.pl>
|
* Sun Jul 20 2014 Piotr Fusik <fox@scene.pl>
|
||||||
- 3.1.0-1
|
- 3.1.0-1
|
||||||
- Initial packaging
|
- Initial packaging
|
||||||
|
Loading…
Reference in New Issue
Block a user