-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhistory.txt
93 lines (91 loc) · 5.38 KB
/
history.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
***************************************************************************
* dasmfw -- Disassembler Framework *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
***************************************************************************
History:
v0.1 2015-06-30 Initial version
v0.2 2015-07-22 dasmfw roughly has f9dasm's capabilities now, although
some minute details have to be specified differently
v0.3 2015-07-23 phasing implemented
v0.4 2015-07-24 Quite some bug fixes, changes and enhancements
dasmfw can correctly disassemble the Wave 2.3 V6 code now
v0.5 2015-07-26 "comment" option added to allow suppressing comments
insert|prepend|comment|prepcom without address range
can be used to insert text before the output
v0.6 2015-08-02 AVR8 disassembler added
v0.7 2015-08-18 Quite some bug fixes, changes and enhancements
signed|unsigned option added
multilabel option added
deflabel directive added
reglabel directive added for AVR8 info files
v0.8 2015-08-19 Bus logic changes
-bus command line option added to allow loading files
into one of the available busses
(automatically for .eep files in AVR8 disassembler)
v0.9 2015-09-28 Code cleanups, little performance enhancements
avr-gcc option added to AVR8 disassembler
v0.10 2016-07-01 autolabel option added
LOW, HIGH, MLOW, MHIGH, LOW2, HIGH2 directives added for AVR8
v0.11 2017-07-21 68000 disassembler added
v0.12 2020-11-07 CREF option added
v0.13 2020-11-24 Motorola 68HC11 disassembler added
v0.14 2020-12-18 FORCE[USED] directive added
v0.15 2020-12-28 dplabel directive added to 6800-based disassemblers
v0.16 2021-01-15 FORCEADDR and NOFORCEADDR directive added
v0.17 2021-01-25 step size added to a bunch of range specifications
added documentation
v0.18 2021-01-27 added Makefile for Linux builds plus small fixes
(oh boy, that was a cleanup session...)
v0.19 2021-01-30 forceaddr option added
added 650X-based range of disassemblers
v0.20 2021-03-13 some fixes
Added OS9 module handling to 6809 disassembler
v0.21 2021-07-21 some improvements
"text" instruction added
v0.22 2021-08-21 [no]comments option added
rpath* info file instructions added
v0.23 2021-10-20 small improvements
v0.24 2022-05-05 Phillip Eaton went at it again :-)
Fix for https://github.com/Arakula/dasmfw/issues/6
Info file lines with in-line comments were not processed correctly.
From now on, if a * appears in the line that does NOT start the
comment part, it has to be prefixed with a \ to be processed.
Added upmnemo {on|off|default} option in response to
https://github.com/Arakula/dasmfw/issues/4
Fix for https://github.com/Arakula/dasmfw/issues/5
Slight 650X improvements
v0.25 2022-05-06 [no]code option documented
[no]labeleqs option documented
Slight changes to info file handling against v0.24 as
neither "option cchar *" nor "option cchar \*" worked <sigh> ...
now it should work as documented and it's "option cchar \*"
v0.26 2022-05-09 upmnemo option now also influences register names
Updates to 6502 disassembler
v0.27 2022-05-10 relc directive added
v0.28 2022-05-18 crude fix for https://github.com/Arakula/dasmfw/issues/8
added 2 options for the 680X and 650X disassemblers to set
up a pattern for forced direct(zeropage) and extended(absolute)
addressing
v0.29 2022-05-20 "option offset,begin,end,bus,interleave" info file statements preceding
a "file" statement should work now
v0.30 2022-06-06 Updates to 6502 disassembler
v0.31 2022-06-08 Added mnemo info file directive
Added boppcom option for 68HC11
v0.32 2022-10-10 begin and end options didn't work as intended; they should now.
v0.33 2022-10-11 Added some features to the mnemo directive
v0.34 2022-10-13 reg directive added
v0.35 2022-10-17 Little fix for 68HC11 (deadly little error...)
Inverted boppcom default since A09 can now handle it properly