From 7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Fri, 3 Jan 2020 01:36:34 -0800 Subject: 5876 - address -> addr --- html/084emit-hex-array.subx.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'html/084emit-hex-array.subx.html') diff --git a/html/084emit-hex-array.subx.html b/html/084emit-hex-array.subx.html index e4d39d23..836f53f9 100644 --- a/html/084emit-hex-array.subx.html +++ b/html/084emit-hex-array.subx.html @@ -64,7 +64,7 @@ if ('onhashchange' in window) { 4 # . 1-3 bytes 3 bits 2 bits 3 bits 3 bits 3 bits 2 bits 2 bits 0/1/2/4 bytes 0/1/2/4 bytes 5 6 # print 'arr' in hex with a space after every byte - 7 emit-hex-array: # out : (address buffered-file), arr : (address array byte) + 7 emit-hex-array: # out : (addr buffered-file), arr : (addr array byte) 8 # . prologue 9 55/push-ebp 10 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp @@ -77,9 +77,9 @@ if ('onhashchange' in window) { 17 8b/copy 1/mod/*+disp8 5/rm32/ebp . . . 7/r32/edi 8/disp8 . # copy *(ebp+8) to edi 18 # edx = arr 19 8b/copy 1/mod/*+disp8 5/rm32/ebp . . . 2/r32/edx 0xc/disp8 . # copy *(ebp+12) to edx - 20 # var curr/ecx : (address byte) = arr->data + 20 # var curr/ecx : (addr byte) = arr->data 21 8d/copy-address 1/mod/*+disp8 2/rm32/edx . . . 1/r32/ecx 4/disp8 . # copy edx+4 to ecx - 22 # var max/edx : (address byte) = &arr->data[arr->length] + 22 # var max/edx : (addr byte) = &arr->data[arr->length] 23 8b/copy 0/mod/indirect 2/rm32/edx . . . 2/r32/edx . . # copy *edx to edx 24 01/add 3/mod/direct 2/rm32/edx . . . 1/r32/ecx . . # add ecx to edx 25 # var c/eax : byte = 0 -- cgit 1.4.1-2-gfad0 -06 21:22:09 +0000 committer James Booth <boothj5@gmail.com> 2015-01-06 21:22:09 +0000 Added chat session tests' href='/danisanti/profani-tty/commit/tests/test_chat_session.c?id=f7843def2f307286448fda166b425f48aaa6ddf0'>f7843def ^
9bd2315d ^

f7843def ^

9bd2315d ^
f7843def ^

9bd2315d ^
f7843def ^
51bd4ed3 ^
9bd2315d ^
f7843def ^
9bd2315d ^

f7843def ^

9bd2315d ^
f7843def ^

9bd2315d ^

f7843def ^
51bd4ed3 ^

9bd2315d ^
f7843def ^
9bd2315d ^
f7843def ^

9bd2315d ^
f7843def ^

9bd2315d ^
f7843def ^
51bd4ed3 ^
9bd2315d ^

f7843def ^
9bd2315d ^
25a6252a ^
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
42
43
44
45
46
47
48
49
50
51