Compare commits
2 Commits
2445eb3d3f
...
fc6a5eaac6
Author | SHA1 | Date | |
---|---|---|---|
rhjr | fc6a5eaac6 | ||
rhjr | ef1a11b4d1 |
15
README
15
README
|
@ -1,6 +1,19 @@
|
||||||
Copyright (C) 2024 René Huiberts https://git.rhjr.dev
|
|
||||||
|
|
||||||
Reference material
|
Reference material
|
||||||
|
|
||||||
1. The 8086 Family User's Manual, October 1979 ~ Intel
|
1. The 8086 Family User's Manual, October 1979 ~ Intel
|
||||||
https://edge.edx.org/c4x/BITSPilani/EEE231/asset/8086_family_Users_Manual_1_.pdf
|
https://edge.edx.org/c4x/BITSPilani/EEE231/asset/8086_family_Users_Manual_1_.pdf
|
||||||
|
|
||||||
|
2. Computer, Enhance! by Casey Muratori
|
||||||
|
https://computerenhance.com
|
||||||
|
|
||||||
|
Copyright notice
|
||||||
|
|
||||||
|
(C) Copyright 2024 by René Huiberts, https://git.rhjr.dev, All Rights Reserved.
|
||||||
|
/-> All files / folders described here:
|
||||||
|
+ docs/
|
||||||
|
+ src/
|
||||||
|
|
||||||
|
(C) Copyright 2023 by Molly Rocket, Inc., All Rights Reserved.
|
||||||
|
/-> All files / folders described here:
|
||||||
|
+ data/
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
; ========================================================================
|
||||||
|
;
|
||||||
|
; (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 37
|
||||||
|
; ========================================================================
|
||||||
|
|
||||||
|
bits 16
|
||||||
|
|
||||||
|
mov cx, bx
|
|
@ -0,0 +1,29 @@
|
||||||
|
; ========================================================================
|
||||||
|
;
|
||||||
|
; (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 38
|
||||||
|
; ========================================================================
|
||||||
|
|
||||||
|
bits 16
|
||||||
|
|
||||||
|
mov cx, bx
|
||||||
|
mov ch, ah
|
||||||
|
mov dx, bx
|
||||||
|
mov si, bx
|
||||||
|
mov bx, di
|
||||||
|
mov al, cl
|
||||||
|
mov ch, ch
|
||||||
|
mov bx, ax
|
||||||
|
mov bx, si
|
||||||
|
mov sp, di
|
||||||
|
mov bp, ax
|
Loading…
Reference in New Issue
Block a user