diff options
-rw-r--r-- | core/pxelinux.asm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/pxelinux.asm b/core/pxelinux.asm index 31741a93..e8818a6c 100644 --- a/core/pxelinux.asm +++ b/core/pxelinux.asm @@ -369,8 +369,7 @@ pxenv: cmp bx,0073h ; PXENV_RESTART_TFTP jz .disable_timer cmp bx,00E5h ; gPXE PXENV_FILE_EXEC - jz .disable_timer - jmp .store_stack + jnz .store_stack .disable_timer: call timer_cleanup @@ -407,8 +406,7 @@ pxenv: cmp bx,0073h jz .enable_timer cmp bx,00E5h - jz .enable_timer - jmp .pop_flags + jnz .pop_flags .enable_timer: call timer_init |