Fix regression when building deathstar.com for aarch64 (#957)

It turns out my earlier commit ddc08dc974 caused a build with
MODE=aarch64 to fail.  The commit changed deathstar.c to link
in code to support a VGA console, but this is not implemented
yet for AArch64.  Thanks to @ahgamut for spotting this issue.
This commit is contained in:
tkchia 2023-11-17 04:13:17 +08:00 committed by GitHub
parent 665747a319
commit 7010a8081e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,8 +15,10 @@
#define FRAMERATE 23.976
#define WRITE(s) write(1, s, strlen(s))
#ifdef __x86_64__
__static_yoink("vga_console");
__static_yoink("EfiMain");
#endif
struct Sphere {
double cx, cy, cz, r;