[Nyx] Introducing hekate GUI, named Nyx!

Version 0.8.0.

Expect dragons!
This commit is contained in:
ctcaer@gmail.com
2019-06-30 04:03:00 +03:00
parent c0b3a4fc54
commit c41f98039c
308 changed files with 91222 additions and 2 deletions

23
nyx/nyx_gui/link.ld Normal file
View File

@@ -0,0 +1,23 @@
ENTRY(_start)
SECTIONS {
PROVIDE(__ipl_start = NYX_LOAD_ADDR);
. = __ipl_start;
.text : {
*(.text._start);
*(._ipl_version);
*(.text*);
}
.data : {
*(.data*);
*(.rodata*);
}
. = ALIGN(0x10);
__ipl_end = .;
.bss : {
__bss_start = .;
*(COMMON)
*(.bss*)
__bss_end = .;
}
}