Commit d1edf01d authored by Lucas Russo's avatar Lucas Russo

linker/*: add section to store module's structures

This will enable us to not use a static
global table like the one in sm_io_mod_dispatch.c.
We will be able to remove this file completely.
parent 8a54c12c
SECTIONS
{
.smio_mod_dispatch : ALIGN(4)
{
_smio_mod_dispatch = .;
KEEP(*(.smio_mod_dispatch))
_esmio_mod_dispatch = .;
}
}
INSERT AFTER .rodata;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment