Refactored arm package

This commit is contained in:
2025-04-16 17:38:48 +02:00
parent 53ecf40229
commit df725a2b23
26 changed files with 102 additions and 53 deletions

22
src/arm/condition.go Normal file
View File

@ -0,0 +1,22 @@
package arm
type condition uint8
const (
EQ condition = iota
NE
CS
CC
MI
PL
VS
VC
HI
LS
GE
LT
GT
LE
AL
NV
)