Fix bootloader
parent
bebed12bf4
commit
3fc40ce6be
|
@ -7,3 +7,6 @@ end_of_line = lf
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
insert_final_newline = false
|
insert_final_newline = false
|
||||||
|
|
||||||
|
[*.asm]
|
||||||
|
indent_style = space
|
|
@ -22,9 +22,9 @@ times 3072 db 0 ; Pad to 0x13000
|
||||||
|
|
||||||
; stage3, loaded at 0x13000
|
; stage3, loaded at 0x13000
|
||||||
stage3:
|
stage3:
|
||||||
; %defstr STAGE3_STR %[STAGE3]
|
%defstr STAGE3_STR %[STAGE3]
|
||||||
; incbin STAGE3_STR
|
incbin STAGE3_STR
|
||||||
; align 512, db 0
|
align 512, db 0
|
||||||
.end:
|
.end:
|
||||||
|
|
||||||
; the maximum size of the boot loader portion is 384 KiB
|
; the maximum size of the boot loader portion is 384 KiB
|
||||||
|
|
Loading…
Reference in New Issue