summaryrefslogtreecommitdiff
path: root/data/estimating_cycles/listing_0056_estimating_cycles.asm
blob: 3a28ddd75dfde2ac66f804d0ffbf14f1cf7de129 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
; ========================================================================
;
; (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 56
; ========================================================================

bits 16

mov bx, 1000
mov bp, 2000
mov si, 3000
mov di, 4000

mov cx, bx
mov dx, 12

mov dx, [1000]

mov cx, [bx]
mov cx, [bp]
mov [si], cx
mov [di], cx 

mov cx, [bx + 1000]
mov cx, [bp + 1000]
mov [si + 1000], cx 
mov [di + 1000], cx

add cx, dx
add [di + 1000], cx
add dx, 50