Added several missing assembler directives (opt, machine, etc.)
This commit is contained in:
parent
3aeb415974
commit
27b7593de8
@ -72,6 +72,7 @@ make it work with JUnit 5. Feel free to use the code (in package ```de.platon42.
|
|||||||
|
|
||||||
- Enhancement: Added Structure View filters.
|
- Enhancement: Added Structure View filters.
|
||||||
- New: Added inspection to validate the correctness of a MC68000 instruction regarding operation size and address modes.
|
- New: Added inspection to validate the correctness of a MC68000 instruction regarding operation size and address modes.
|
||||||
|
- Bugfix: Added several missing assembler directives (`opt`, `machine`, etc.)
|
||||||
|
|
||||||
### V0.3 (28-Jul-21)
|
### V0.3 (28-Jul-21)
|
||||||
|
|
||||||
|
@ -61,6 +61,7 @@ patchPluginXml {
|
|||||||
<ul>
|
<ul>
|
||||||
<li>Enhancement: Added Structure View filters.
|
<li>Enhancement: Added Structure View filters.
|
||||||
<li>New: Added inspection to validate the correctness of a MC68000 instruction regarding operation size and address modes.
|
<li>New: Added inspection to validate the correctness of a MC68000 instruction regarding operation size and address modes.
|
||||||
|
<li>Bugfix: Added several missing assembler directives (opt, machine, etc.)
|
||||||
</ul>
|
</ul>
|
||||||
<h4>V0.3 (28-Jul-21)</h4>
|
<h4>V0.3 (28-Jul-21)</h4>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -36,6 +36,7 @@ object AssemblerDirectives {
|
|||||||
"extern", "nref", "xdef", "xref", "globl", "public", "weak",
|
"extern", "nref", "xdef", "xref", "globl", "public", "weak",
|
||||||
|
|
||||||
"reg", "equr", "equrl",
|
"reg", "equr", "equrl",
|
||||||
|
"freg", "fequr", "fequrl",
|
||||||
|
|
||||||
"incdir", "include", "incbin", "output",
|
"incdir", "include", "incbin", "output",
|
||||||
|
|
||||||
@ -45,6 +46,13 @@ object AssemblerDirectives {
|
|||||||
"assert", "fail", "print", "printt", "printv", "echo",
|
"assert", "fail", "print", "printt", "printv", "echo",
|
||||||
|
|
||||||
"inline", "einline",
|
"inline", "einline",
|
||||||
"rem", "erem"
|
"rem", "erem",
|
||||||
|
|
||||||
|
"machine", "mc68000", "mc68010", "mc68020", "mc68030", "mc68040", "mc68060",
|
||||||
|
"fpu",
|
||||||
|
|
||||||
|
"basereg", "endb", "far", "near", "initnear",
|
||||||
|
|
||||||
|
"opt"
|
||||||
)
|
)
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user