Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
SquirrelJME
Commits
7dc71bd3
Commit
7dc71bd3
authored
Jul 18, 2021
by
Stephanie Gawroriski
Browse files
More pull in.
parent
15e6f657
Pipeline
#39155
passed with stages
in 1 minute and 32 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
modules/cldc-compact/src/test/java/squirreljme/summercoat/TestPointerAccess.java
View file @
7dc71bd3
...
...
@@ -31,7 +31,7 @@ public class TestPointerAccess
Object
object
=
new
Object
();
// This object cannot be null
long
pointer
=
Assembly
.
objectToPointer
(
object
);
int
pointer
=
Assembly
.
objectToPointer
(
object
);
this
.
secondary
(
"otpnotnull"
,
pointer
!=
0
);
// Reversing this operation should return the original object
...
...
modules/cldc-compact/src/test/java/squirreljme/summercoat/TestSystemTime.java
View file @
7dc71bd3
...
...
@@ -9,8 +9,7 @@
package
squirreljme.summercoat
;
import
cc.squirreljme.jvm.Assembly
;
import
cc.squirreljme.jvm.SystemCallIndex
;
import
cc.squirreljme.runtime.cldc.debug.Debugging
;
import
net.multiphasicapps.tac.TestRunnable
;
/**
...
...
@@ -28,6 +27,8 @@ public class TestSystemTime
@Override
public
void
test
()
{
throw
Debugging
.
todo
();
/*
Assembly.sysCall(SystemCallIndex.TIME_MILLI_WALL);
this.secondary("mw", Assembly.sysCallV(SystemCallIndex.ERROR_GET,
SystemCallIndex.TIME_MILLI_WALL));
...
...
@@ -35,6 +36,7 @@ public class TestSystemTime
Assembly.sysCall(SystemCallIndex.TIME_NANO_MONO);
this.secondary("nm", Assembly.sysCallV(SystemCallIndex.ERROR_GET,
SystemCallIndex.TIME_NANO_MONO));
*/
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment