Mercurial > hg-old > index.cgi
annotate ChangeLog @ 222:7803d2d09993
Allow 8 bit immediate operands to be external references
author | lost |
---|---|
date | Sat, 09 May 2009 16:39:17 +0000 |
parents | 271c0ef9ea60 |
children | 436b36214e35 |
rev | line source |
---|---|
148 | 1 The following includes the various changes in each release of LWTOOLS. |
2 | |
3 Each item is prefixed by a flag in []. The flags mean: | |
4 | |
5 [*] Project structure or other "meta" change | |
6 [!] critical bug fix - code generation error, etc. | |
7 [+] new feature | |
8 [-] feature removed | |
9 [b] minor bugfix | |
183
302b8db5fd89
modified lwlink to merge contiguous sections in the DECB output file to avoid the explosion of preambles
lost
parents:
182
diff
changeset
|
10 [ ] general improvement |
148 | 11 |
12 Also, the software affected may follow in []. | |
13 | |
220
2b254f02b252
Fixed off by one relocation offset for direct page external references
lost
parents:
216
diff
changeset
|
14 Version 2.4 |
2b254f02b252
Fixed off by one relocation offset for direct page external references
lost
parents:
216
diff
changeset
|
15 |
2b254f02b252
Fixed off by one relocation offset for direct page external references
lost
parents:
216
diff
changeset
|
16 [!] Fixed off by one relocation offest for base page external references |
221 | 17 generated by lwasm [LWASM] |
18 [b] Fixed segfault in "extern" pseudo op and allowed a symbol list as the | |
19 operand just like "export" [LWASM] | |
222
7803d2d09993
Allow 8 bit immediate operands to be external references
lost
parents:
221
diff
changeset
|
20 [+] 8 bit immediate operands can now be external references [LWASM] |
220
2b254f02b252
Fixed off by one relocation offset for direct page external references
lost
parents:
216
diff
changeset
|
21 |
180 | 22 Version 2.3 |
23 | |
216 | 24 [*] added support for compiling using MinGW and added portions of gnulib |
25 to support argp, among other things. Yah! A Windows build! | |
187 | 26 [+] added library search path (-L) and library specification (-l) to LWLINK |
27 [+] added ability to specify section base addresses on the command line to | |
180 | 28 LWLINK (they get prepended to the built in link script) |
187 | 29 [+] added ability to output a "linkmap" to lwlink (--map, -m) |
30 [+] added LWEX0 (LWOS simple binary) target to LWLINK | |
188 | 31 [+] added ability to extract files in LWAR |
32 [+] added ability to "replace" members in LWAR | |
190 | 33 [+] added support for "sym=expr" in the opcode field; this will define a |
34 global symbol (non-section) if it resolves to a constant | |
191 | 35 [+] added operator ~ as a prefix operator for a 1s complement in LWASM |
192
bfd0fb0a85c2
Allow exporting multiple symbols on a single directive
lost
parents:
191
diff
changeset
|
36 [+] allow exporting multiple symbols (export sym,sym,sym...) |
216 | 37 [+] allow extern references in base page addresing mode, possibly buggy |
38 still (LWASM) | |
39 [+] handle 8 bit external references, possibly buggy still (LWLINK) | |
206
299c5d793aca
Made lwlink smarter about not included unneeded (unreferenced) members of a library file
lost
parents:
204
diff
changeset
|
40 [+] arranged for unused members of library files (archives) to be ignored |
299c5d793aca
Made lwlink smarter about not included unneeded (unreferenced) members of a library file
lost
parents:
204
diff
changeset
|
41 during linking to keep the final size of the binary down (LWLINK) |
182
833d392fec82
Arranged for lwasm and lwlink to remove the output file in case they fail
lost
parents:
180
diff
changeset
|
42 [b] arranged for output files for lwasm/lwlink to be removed if the assembly |
833d392fec82
Arranged for lwasm and lwlink to remove the output file in case they fail
lost
parents:
180
diff
changeset
|
43 or linking fails |
209 | 44 [b] fixed incorrect handling of library search path which caused only the |
45 last directory to ever matter | |
183
302b8db5fd89
modified lwlink to merge contiguous sections in the DECB output file to avoid the explosion of preambles
lost
parents:
182
diff
changeset
|
46 [ ] DECB output of LWLINK now collapses contiguous output blocks into single |
302b8db5fd89
modified lwlink to merge contiguous sections in the DECB output file to avoid the explosion of preambles
lost
parents:
182
diff
changeset
|
47 single blocks in the output file; this eliminates the explosion of |
302b8db5fd89
modified lwlink to merge contiguous sections in the DECB output file to avoid the explosion of preambles
lost
parents:
182
diff
changeset
|
48 preambles that previously occurred |
184
220a760ec654
Make lwlink display all undefined references instead of bailing after the first one
lost
parents:
183
diff
changeset
|
49 [ ] LWLINK now displays *all* undefined symbols and references instead of |
220a760ec654
Make lwlink display all undefined references instead of bailing after the first one
lost
parents:
183
diff
changeset
|
50 bailing out after the first one |
180 | 51 |
166 | 52 Version 2.2 |
53 | |
171 | 54 [*] created LWAR to manage library/archive files |
166 | 55 [+] cescapes pragma to allow C-style string escapes in FCC, FCS, and FCN |
56 [+] .area alias for SECTION | |
57 [+] .globl alias for EXPORT; also accept name of symbol as operand | |
58 [+] various compatibility directive aliases for FCB, FDB, FQB, RMB, FCC, | |
59 FCS, and FCN | |
60 [+] accept "*" has a prefix for base page addressing mode | |
168 | 61 [+] sections named "bss" or ".bss" in any case are now assumed to be |
62 BSS sections. The "!bss" flag can be used to remove that assumption. | |
169 | 63 [+] ignore lines starting with # to permit C pre-processor output to be used |
64 as input to lwasm | |
170
bf69160da467
Added ability to use 0x and 0X as prefixes for hexadecimal numbers
lost
parents:
169
diff
changeset
|
65 [+] allow "0x" and "0X" as prefixes to identify hexadecimal numbers |
171 | 66 [+] added support for a simple library/archive file format to LWLINK |
166 | 67 [b] actually show assembly errors when no list requested |
68 [b] pragma and --pragma now actually take multiple pragmas as documented | |
69 | |
148 | 70 Version 2.1 |
71 | |
72 [*] merged LWLINK (1.0) and LWASM to create LWTOOLS | |
73 [+] [LWASM] pragmas can be specified on the command line | |
74 [+] [LWASM] undefextern pragma added (undefined symbols treated as external) | |
75 [+] documentation | |
76 [b] [LWASM] made pragmas case insensitive | |
77 [b] [LWASM] made EXTERN symbols never be part of a section in symbol table | |
78 | |
79 | |
80 LWASM Version 2.0 | |
81 | |
82 [*] major rewrite of the entire assembler | |
83 [+] object file support | |
84 | |
85 | |
86 LWLINK Version 1.0 | |
87 | |
88 [*] initial released version |