Some improvements for FOOTBALL, including support for the 386 LOADALL instruction

This commit is contained in:
Jeff Parsons 2016-01-28 22:22:36 -08:00
commit a5b9e0cae7
27 changed files with 4431 additions and 3981 deletions

View file

@ -26,6 +26,7 @@ Instruction documentation is also available:
Our [Publication Archive](/pubs/) includes these PC-related resources:
* [Datasheets](/pubs/pc/datasheets/)
* [Intel CPU Documents](/pubs/pc/reference/intel/)
* [Magazines](/pubs/pc/magazines/)
* [Programming Guides](/pubs/pc/programming/) (eg, [OS/2](/pubs/pc/programming/os2/))
* [Reference Manuals](/pubs/pc/reference/)

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -25,10 +25,10 @@ it is a BCD digit.
The following example shows how to add BCD numbers then adjust the result:
MOV AH,0 ;Clear AH for most significant digit
MOV AL,6 ;BCD 6 in AL
ADD AL,5 ;Add BCD 5 to digit in AL
AAA ;AH=1, AL=1 representing BCD 11.
MOV AH,0 ; Clear AH for most significant digit
MOV AL,6 ; BCD 6 in AL
ADD AL,5 ; Add BCD 5 to digit in AL
AAA ; AH=1, AL=1 representing BCD 11.
### Algorithm