mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-06 06:53:39 +00:00
10 lines
180 B
C
10 lines
180 B
C
#include "uvm32_target.h"
|
|
|
|
void main(void) {
|
|
if (0xAABBCCDD == syscall(0xDEADBEEF, 0xABCD1234, 0xDECAFBAD)) {
|
|
print("ok");
|
|
} else {
|
|
print("fail");
|
|
}
|
|
}
|
|
|