Do garbage collection of unused sections.
[seabios.git] / src / entryfuncs.S
index 65218e3bb8b402c4f88f6e75eea19b64da05d150..3c29b3f77a54e00fdfc3da20dd8a710962e4928c 100644 (file)
         .section .text.asm.\func
         .global \func
         .endm
+
+        // Declare an exported function
+        .macro EXPORTFUNC func
+        .section .text.asm.export.\func
+        .global \func
+        .endm