25 lines
714 B
NASM
25 lines
714 B
NASM
; ========================================================================
|
|
;
|
|
; (C) Copyright 2023 by Molly Rocket, Inc., All Rights Reserved.
|
|
;
|
|
; This software is provided 'as-is', without any express or implied
|
|
; warranty. In no event will the authors be held liable for any damages
|
|
; arising from the use of this software.
|
|
;
|
|
; Please see https://computerenhance.com for further information
|
|
;
|
|
; ========================================================================
|
|
|
|
; ========================================================================
|
|
; LISTING 49
|
|
; ========================================================================
|
|
|
|
bits 16
|
|
|
|
mov cx, 3
|
|
mov bx, 1000
|
|
loop_start:
|
|
add bx, 10
|
|
sub cx, 1
|
|
jnz loop_start
|