jmp -> jmp short (necessary for nasm 0.98)

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@713 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2003-10-05 13:34:25 +00:00
parent 3fa044c149
commit ed77e34c55

View File

@ -186,7 +186,7 @@ ff_find_next_cluster:
pop ax ; restore current cluster pop ax ; restore current cluster
pop dx pop dx
call next_cluster call next_cluster
jmp ff_next_cluster jmp short ff_next_cluster
ff_done: ff_done:
mov ax, [es:di+0x1A-11] ; get cluster number mov ax, [es:di+0x1A-11] ; get cluster number
@ -207,7 +207,7 @@ c6:
pop ax pop ax
pop dx pop dx
call next_cluster call next_cluster
jmp c5 jmp short c5
boot_error: boot_error:
xor ah,ah xor ah,ah
@ -369,7 +369,7 @@ read_next: push dx
jnc read_ok ; jump if no error jnc read_ok ; jump if no error
xor ah, ah ; else, reset floppy xor ah, ah ; else, reset floppy
int 0x13 int 0x13
jmp read_next jmp short read_next
read_ok: read_ok:
add bx, word [bsBytesPerSec] add bx, word [bsBytesPerSec]