mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
23bb276fcd
Cooperate with the compiler to generate and execute the _init_array list of constructor functions on userspace program statup. This took two days to get working, my goodness. :^)
9 lines
101 B
ArmAsm
9 lines
101 B
ArmAsm
.global _init
|
|
.section .init
|
|
_init:
|
|
push %ebp
|
|
|
|
.global _fini
|
|
.section .fini
|
|
_fini:
|
|
push %ebp
|