8 lines
No EOL
171 B
C
8 lines
No EOL
171 B
C
#include "elf.h"
|
|
#include "uart.h"
|
|
|
|
int elf_load(const void *elf_data) {
|
|
uart_puts("[ELF] Loading ELF...\n");
|
|
// Stub - parse headers, map segments
|
|
return 0;
|
|
} |