代码搜索:Boot
找到约 10,000 项符合「Boot」的源代码
代码结果 10,000
www.eeworm.com/read/396643/8096827
bin boot.bin
www.eeworm.com/read/396643/8096835
asm boot.asm
.MODEL SMALL
.CODE
ORG 7c00h ;Because BIOS loades the OS at
; address 0:7C00h so ORG 7C00h
; makes that the refrence to date
; are with the right offset (7c00h).
Progr
www.eeworm.com/read/196321/8098869
opt boot.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.a*; *.src)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt)
pExt (*.plm)
CppX (*.cpp)
DaveTm { 0,0,0,0,0,0,0,0 }
www.eeworm.com/read/196321/8098871
plg boot.plg
Build target 'Target 1'
Target has no object modules
Target not created
www.eeworm.com/read/196321/8098889
hex boot.hex
:0F03440073746F6B0065726F720070726F6B0075
:07000300010F00020A0000DA
:03037000D2AF22E7
:06036A00438901D2A92223
:09036100EFF58AEEF58CD28C2236
:1000260012037012000E12036AE4F50EF508F509C4
:10003600F
www.eeworm.com/read/396295/8116011
asm boot.asm
.title "Flash bootup utility for DM642 EVM"
.option D,T
.length 102
.width 140
COPY_TABLE .equ 0x90000400
EMIF_BASE .equ 0x01800000
www.eeworm.com/read/396258/8117979
in boot.lds.in
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS {
. = BOOTADDR;
__boot_start = .;
.start ALIGN(4) : {
*(.text.start)
}
.setup ALIGN(4) : {
setup_block = .;
*(.setup)
setup_block_end = .;
}
www.eeworm.com/read/396258/8118029
lds boot.lds
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS {
. = 0xa3f00000;
__boot_start = .;
.start ALIGN(4) : {
*(.text.start)
}
.setup ALIGN(4) : {
setup_block = .;
*(.setup)
setup_block_end = .;
}
www.eeworm.com/read/295999/8129168
asm boot.asm
org 0x7c00
jmp short LABEL_START
nop
%include "fat12hd.inc"
TopOfStack equ 07bffh ;栈顶
DisPosition db 0
%include "const.inc"
LABEL_START:
;清屏
mov ax, 0600h ; AH = 6, AL = 0h
mov bx, 0