1
0
mirror of https://github.com/irmen/ksim65.git synced 2024-06-08 04:29:30 +00:00

kotlin 1.6.10

This commit is contained in:
Irmen de Jong 2022-01-09 03:53:50 +01:00
parent b17b72b6b5
commit 1ca771840b
5 changed files with 12 additions and 34 deletions

View File

@ -9,14 +9,12 @@
<option name="distributionType" value="DEFAULT_WRAPPED" /> <option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" /> <option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleHome" value="/usr/share/java/gradle" /> <option name="gradleHome" value="/usr/share/java/gradle" />
<option name="gradleJvm" value="openjdk-11" /> <option name="gradleJvm" value="11" />
<option name="modules"> <option name="modules">
<set> <set>
<option value="$PROJECT_DIR$" /> <option value="$PROJECT_DIR$" />
</set> </set>
</option> </option>
<option name="useAutoImport" value="true" />
<option name="useQualifiedModuleNames" value="true" />
</GradleProjectSettings> </GradleProjectSettings>
</option> </option>
</component> </component>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="ksim65" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="net.razorvine" external.system.module.version="1.9" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
<excludeFolder url="file://$MODULE_DIR$/build" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/ksim65.iml" filepath="$PROJECT_DIR$/.idea/ksim65.iml" />
</modules>
</component>
</project>

View File

@ -5,7 +5,7 @@ import kotlin.math.max
plugins { plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin on the JVM. // Apply the Kotlin JVM plugin to add support for Kotlin on the JVM.
kotlin("jvm") version "1.5.30" kotlin("jvm") version "1.6.10"
`maven-publish` `maven-publish`
application application
java java

View File

@ -281,61 +281,61 @@ class Test6502TestSuiteIllegalInstructions: FunctionalTestsBase() {
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testAlrb() { fun testAlrb() {
runTest("alrb") // TODO fix? runTest("alrb") // TODO fix?
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testAneb() { fun testAneb() {
runTest("aneb") // TODO fix? runTest("aneb") // TODO fix?
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testArrb() { fun testArrb() {
runTest("arrb") // TODO fix? runTest("arrb") // TODO fix?
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testLxab() { fun testLxab() {
runTest("lxab") // TODO fix something? runTest("lxab") // TODO fix something?
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testSbxb() { fun testSbxb() {
runTest("sbxb") // TODO fix? runTest("sbxb") // TODO fix?
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testShaay() { fun testShaay() {
runTest("shaay") // TODO fix? runTest("shaay") // TODO fix?
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testShaiy() { fun testShaiy() {
runTest("shaiy") // TODO fix? runTest("shaiy") // TODO fix?
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testShsay() { fun testShsay() {
runTest("shsay") // TODO fix? runTest("shsay") // TODO fix?
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testShxay() { fun testShxay() {
runTest("shxay") // TODO fix? runTest("shxay") // TODO fix?
} }
@Test @Test
@Disabled("this illegal instruction is probablyt not implemented correctly yet") @Disabled("this illegal instruction is probably not implemented correctly yet")
fun testShyax() { fun testShyax() {
runTest("shyax") // TODO fix? runTest("shyax") // TODO fix?
} }