Merge remote-tracking branch 'origin/patch'

This commit is contained in:
Ryan Kurtz 2024-06-10 14:36:35 -04:00
commit ebfd108dde
3 changed files with 830 additions and 332 deletions

View File

@ -169,7 +169,7 @@ DIRECT: imm8 is imm8 { export *:1 imm8; }
}
:BHI REL is op=0x22;REL
{
local tmp = C + Z;
local tmp = C || Z;
if (tmp == 0) goto REL;
}
@ -195,7 +195,7 @@ DIRECT: imm8 is imm8 { export *:1 imm8; }
:BLS REL is op=0x23;REL
{
local tmp = C + Z;
local tmp = C || Z;
if (tmp) goto REL;
}

View File

@ -18,4 +18,6 @@ apply from: "$rootProject.projectDir/gradle/processorProject.gradle"
apply plugin: 'eclipse'
eclipse.project.name = 'Processors Z80'
sleighCompileOptions = [
'-l'
]

File diff suppressed because it is too large Load Diff