mirror of
https://github.com/pfusik/xasm.git
synced 2024-12-13 16:29:29 +00:00
xasm 3.2.0 release.
This commit is contained in:
parent
8c7ef1a922
commit
52982169df
2
Makefile
2
Makefile
@ -1,4 +1,4 @@
|
||||
VERSION = 3.1.1
|
||||
VERSION = 3.2.0
|
||||
|
||||
prefix = /usr/local
|
||||
bindir = $(prefix)/bin
|
||||
|
@ -99,7 +99,7 @@ These rights, on this notice, rely.
|
||||
Download
|
||||
--------
|
||||
|
||||
[xasm 3.1.1](https://github.com/pfusik/xasm/releases) for Windows, macOS, Ubuntu and Fedora.
|
||||
[xasm 3.2.0](https://github.com/pfusik/xasm/releases) for Windows, macOS, Ubuntu and Fedora.
|
||||
|
||||
Links
|
||||
-----
|
||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
xasm (3.2.0-1) UNRELEASED; urgency=low
|
||||
|
||||
* New release.
|
||||
|
||||
-- Piotr Fusik <fox@scene.pl> Tue, 22 Jun 2021 20:59:45 +0200
|
||||
|
||||
xasm (3.1.1-1) UNRELEASED; urgency=low
|
||||
|
||||
* New release.
|
||||
|
@ -1,6 +1,6 @@
|
||||
// xasm 3.1.1 by Piotr Fusik <fox@scene.pl>
|
||||
// xasm 3.2.0 by Piotr Fusik <fox@scene.pl>
|
||||
// http://xasm.atari.org
|
||||
// Can be compiled with DMD v2.096.0.
|
||||
// Can be compiled with DMD v2.097.0.
|
||||
|
||||
// Poetic License:
|
||||
//
|
||||
@ -37,7 +37,7 @@ int readByte(File *file) {
|
||||
return c;
|
||||
}
|
||||
|
||||
const string TITLE = "xasm 3.1.1";
|
||||
const string TITLE = "xasm 3.2.0";
|
||||
|
||||
string sourceFilename = null;
|
||||
bool[26] options;
|
||||
|
@ -709,6 +709,14 @@ and pseudo commands, except for `MWA`, `MWX` and `MWY`:
|
||||
HISTORY
|
||||
-------
|
||||
|
||||
Version 3.2.0 (2021-06-22)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
- <<new_locallabel,local labels>> (contributed by Adrian Matoga)
|
||||
- fixed emitted bytes not shown in the listing after `OPT L+` (by Adrian Matoga)
|
||||
- emit shorter code for moving a negative immediate value with `MWX`/`MWY`
|
||||
- Windows binary signed
|
||||
- macOS binary signed, notarized, installed in `/usr/local/bin`
|
||||
|
||||
Version 3.1.1 (2019-11-20)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
- remove partial object file on error (requested by Bill Kendrick)
|
||||
|
@ -1,5 +1,5 @@
|
||||
Name: xasm
|
||||
Version: 3.1.1
|
||||
Version: 3.2.0
|
||||
Release: 1
|
||||
Summary: 6502 cross-assembler
|
||||
License: Poetic
|
||||
@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_mandir}/man1/xasm.1.gz
|
||||
|
||||
%changelog
|
||||
* Tue Jun 22 2021 Piotr Fusik <fox@scene.pl>
|
||||
- 3.2.0-1
|
||||
|
||||
* Wed Nov 20 2019 Piotr Fusik <fox@scene.pl>
|
||||
- 3.1.1-1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user