diff options
Diffstat (limited to 'src/org/blog')
-rw-r--r-- | src/org/blog/assembly/1.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/org/blog/assembly/1.org b/src/org/blog/assembly/1.org index dcd205d..0ed897b 100644 --- a/src/org/blog/assembly/1.org +++ b/src/org/blog/assembly/1.org @@ -80,9 +80,10 @@ MOV [DS:0234h], 0x0005 #+END_SRC Why ? Let's break it down : -[[../../src/gifs/lain-dance.gif]] +[[../../src/gifs/lain-dance.gif]] + We Already know that *Effective = 10h x Segment + Offset*, So here we have : *1234h = 10h x DS + Offset*, we already know that *DS = 0100h*, we end up with this simple equation *1234h = 1000h + Offset*, therefor the Offset is *0234h* |