Skip to content

Commit

Permalink
Version 1.6.46
Browse files Browse the repository at this point in the history
- [Asm] Fix undefined symbol error in constant directives
- [CDP1802] Fix negavtive value handing with DC A(n)
- [MOS6502] Fix 65186 long absolute parsing
- [INS8070] Accept simple label as PC-relative index
- [MC6809] Fix HD6309 DIVD operand
- Add namespace prefix to header file include guard define constant
  • Loading branch information
tgtakaoka committed Feb 19, 2024
1 parent a52ae22 commit 5cdb258
Show file tree
Hide file tree
Showing 29 changed files with 31 additions and 31 deletions.
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ On POSIX environment, assembler command line interface is provided.
It can generate Intel HEX or Motorola S-Record output.

----
libasm assembler (version 1.6.45)
libasm assembler (version 1.6.46)
usage: asm [-o <output>] [-l <list>] <input>
-C <CPU> : target CPU
MC6800 MB8861 MC6801 HD6301 MC68HC11 MC6805 MC146805
Expand Down Expand Up @@ -121,7 +121,7 @@ On POSIX environment, disassembler command line interface is provided.
It can read Intel HEX or Motorola S-Record input.

----
libasm disassembler (version 1.6.45)
libasm disassembler (version 1.6.46)
usage: dis -C <CPU> [-o <output>] [-l <list>] <input>
-C <CPU> : target CPU
MC6800 MB8861 MC6801 HD6301 MC68HC11 MC6805 MC146805
Expand Down
2 changes: 1 addition & 1 deletion examples/cdp1802/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/f3850/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/i8048/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/i8051/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/i8080/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/i8086/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/i8096/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/im6100/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/ins8060/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/ins8070/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/mc6800/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/mc68000/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/mc6809/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/mn1610/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/mos6502/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/ns32000/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/platformio.common
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/scn2650/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/tlcs90/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/tms32010/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/tms7000/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/tms9900/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/z8/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/z80/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion examples/z8000/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default_envs = atmega1284p, avr128da, teensy41
[env]
lib_deps =
tgtakaoka/libcli@1.3.0
tgtakaoka/libasm@1.6.45
tgtakaoka/libasm@1.6.46

[env:atmega1284p]
platform = atmelavr
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libasm",
"version": "1.6.45",
"version": "1.6.46",
"description": "Cross assembler and disassembler for retro CPUs",
"keywords": "Assembler, Disassembler, MC6800, MC6805, MC6809, MC68HC11, MOS6502, i8048, i8051, i8080, Z80, Z8, TLCS90, INS8060, INS8070, CDP1802, SCN2650, F3850, TMS7000, TMS32010, TMS9900, i8086, i8096, MC68000, Z8000, NS32032, MN1610",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=libasm
version=1.6.45
version=1.6.46
author=Tadashi G. Takaoka
maintainer=Tadashi G. Takaoka <tadashi.g.takaoka@gmail.com>
sentence=Cross assembler and disassembler for retro CPUs
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

#define LIBASM_VERSION_MAJOR 1
#define LIBASM_VERSION_MINOR 6
#define LIBASM_VERSION_PATCH 45
#define LIBASM_VERSION_STRING "1.6.45"
#define LIBASM_VERSION_PATCH 46
#define LIBASM_VERSION_STRING "1.6.46"

#endif // __LIBASM_VERSION_H__

Expand Down

0 comments on commit 5cdb258

Please sign in to comment.