Added several missing assembler directives (opt, machine, etc.)

This commit is contained in:
Chris Hodges 2021-07-31 14:04:18 +02:00
parent 3aeb415974
commit 27b7593de8
3 changed files with 11 additions and 1 deletions

View File

@ -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.
- 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)

View File

@ -61,6 +61,7 @@ patchPluginXml {
<ul>
<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>Bugfix: Added several missing assembler directives (opt, machine, etc.)
</ul>
<h4>V0.3 (28-Jul-21)</h4>
<ul>

View File

@ -36,6 +36,7 @@ object AssemblerDirectives {
"extern", "nref", "xdef", "xref", "globl", "public", "weak",
"reg", "equr", "equrl",
"freg", "fequr", "fequrl",
"incdir", "include", "incbin", "output",
@ -45,6 +46,13 @@ object AssemblerDirectives {
"assert", "fail", "print", "printt", "printv", "echo",
"inline", "einline",
"rem", "erem"
"rem", "erem",
"machine", "mc68000", "mc68010", "mc68020", "mc68030", "mc68040", "mc68060",
"fpu",
"basereg", "endb", "far", "near", "initnear",
"opt"
)
}