Revert "added -verafxmul compiler option to use vera fx multiplication routine on cx16"

This reverts commit 690782bf.
It was too risky, using vera (especially fx) transparently in multiple places especially perhaps in IRQ handlers will create havoc unless much intricate care is taken to save/restore the vera state. Better to do vera fx explicitly where the programmer has full control.
This commit is contained in:
Irmen de Jong
2023-10-02 21:06:14 +02:00
parent c3f1f09ad1
commit a289b32053
13 changed files with 55 additions and 171 deletions
@@ -21,7 +21,6 @@ class CompilationOptions(val output: OutputType,
var experimentalCodegen: Boolean = false,
var varsHighBank: Int? = null,
var splitWordArrays: Boolean = false,
var veraFxMul: Boolean = false,
var outputDir: Path = Path(""),
var symbolDefs: Map<String, String> = emptyMap()
) {