1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 18:07:35 +00:00

Userland+Tests: Add initial riscv64 support

This commit is contained in:
Sönke Holz 2023-09-18 12:56:39 +02:00 committed by Andrew Kaster
parent c6b2a07326
commit 6824d2a788
23 changed files with 262 additions and 34 deletions

View file

@ -1 +1,20 @@
# Intentionally empty.
.global _setjmp
.global setjmp
_setjmp:
setjmp:
# FIXME: Implement setjmp.
unimp
.global _longjmp
.global longjmp
_longjmp:
longjmp:
# FIXME: Implement longjmp.
unimp
.global _sigsetjmp
.global sigsetjmp
_sigsetjmp:
sigsetjmp:
# FIXME: Implement sigsetjmp.
unimp