Ciao mi potreste spiegare il significato di questa istruzione:
jmp $
times 510-($-$$) db 0
db 0x55
db 0xaa
il codice per intero è questo:
;
; Note: this example is written in Intel Assembly syntax
;
[BITS 16]
[ORG 0x7c00]
boot:
mov al, 'ciao'
mov ah, 0x0e
mov bh, 0x00
mov bl, 0x07
int 0x10
jmp $
times 510-($-$$) db 0
db 0x55
db 0xaa