小编Mot*_* OS的帖子

引导加载程序未加载内核

我正在开发我的操作系统。

我在启动操作系统时出错。

错误是:

未找到 KERNEL.BIN!

以下是代码:

启动文件

; The Aqua_Seven_OS Operating System bootloader
; ==================================================================


    BITS 16

    jmp short bootloader_start  ; Jump past disk description section
    nop             ; Pad out before disk description


; ------------------------------------------------------------------
; Disk description table, to make it a valid floppy
; Note: some of these values are hard-coded in the source!
; Values are those used by IBM for 1.44 MB, 3.5" diskette

OEMLabel        db "MIKEBOOT"   ; Disk label
BytesPerSector      dw 512      ; Bytes per …
Run Code Online (Sandbox Code Playgroud)

x86 assembly nasm osdev x86-16

1
推荐指数
1
解决办法
564
查看次数

标签 统计

assembly ×1

nasm ×1

osdev ×1

x86 ×1

x86-16 ×1