-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #455 from udo-munk/dev
merge Dev
- Loading branch information
Showing
5 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
ORG 0100H | ||
|
||
MVI A,88 | ||
SUB A | ||
JPE IS8080 | ||
LXI D,Z80TXT | ||
JMP PRINT | ||
IS8080: LXI D,I80TXT | ||
PRINT: MVI C,9 | ||
CALL 5 | ||
RET | ||
|
||
Z80TXT: DB 'This is a Zilog Z80 CPU$' | ||
I80TXT: DB 'This is a Intel 8080 CPU$' | ||
|
||
END |
Binary file not shown.
Binary file not shown.