Improved separation of concerns

This commit is contained in:
2024-07-23 16:41:21 +02:00
parent d6db1b1096
commit 69245caf62
36 changed files with 243 additions and 236 deletions

View File

@ -0,0 +1,12 @@
package z
import "git.akyoto.dev/cli/q/src/build/asm"
func isDestructive(mnemonic asm.Mnemonic) bool {
switch mnemonic {
case asm.MOVE, asm.ADD, asm.SUB, asm.MUL, asm.DIV:
return true
default:
return false
}
}