diff options
| author | Arslaan Pathan <[email protected]> | 2026-03-19 18:04:48 +1300 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-03-19 18:04:48 +1300 |
| commit | 1814057050a5099d7eaa6f0f6395a4054801da6f (patch) | |
| tree | 3395c597b100fbe9c53fee9789cc1b016b4b21d4 /src/boot.s | |
| parent | 0896c87140db479a5663d40a98c16dafc3d26b67 (diff) | |
| download | FrenchToastOS-1814057050a5099d7eaa6f0f6395a4054801da6f.tar.xz FrenchToastOS-1814057050a5099d7eaa6f0f6395a4054801da6f.zip | |
Fix wrong section (text instead of .text, oops) for entrypoint, change 1M alignment back to 2M, make docker scripts work because arm
Diffstat (limited to 'src/boot.s')
| -rw-r--r-- | src/boot.s | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ stack_bottom: stack_top: /* _start is the entrypoint */ -.section text +.section .text .global _start .type _start, @function _start: |
