forked from svofski/pretty-8080-assembler
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Templates, Template menu, More formats
The template is selected using a popup menu invoked when the fish is clicked in the text entry box. Added a dedicated format for Partner 01.01 because it seems to want faster recording speed. Hello world templates for RK-like computers added.
- Loading branch information
Showing
13 changed files
with
257 additions
and
48 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
; 🐟 для Апогея БК-01 | ||
.tape rk-bin | ||
.binfile helloapogee | ||
.org 0 | ||
prompt equ 0F875h | ||
puts equ 0F818h | ||
|
||
lxi hl, msg | ||
call puts | ||
jmp prompt | ||
|
||
msg: | ||
db 1fh,'priwet, mir!',0dh,0ah,0 | ||
|
||
|
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,15 @@ | ||
; 🐟 для Микро-80 | ||
.tape rk-bin | ||
.binfile hellom80 | ||
.org 0 | ||
prompt equ 0F82Dh | ||
puts equ 0F818h | ||
|
||
lxi hl, msg | ||
call puts | ||
jmp prompt | ||
|
||
msg: | ||
db 1fh,'priwet, mir!',0dh,0ah,0 | ||
|
||
|
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,15 @@ | ||
; 🐟 для Микроши | ||
.tape microsha-bin | ||
.binfile hellomicrosha | ||
.org 0 | ||
prompt equ 0F89Dh | ||
puts equ 0F818h | ||
|
||
lxi hl, msg | ||
call puts | ||
jmp prompt | ||
|
||
msg: | ||
db 1fh,'priwet, mir!',0dh,0ah,0 | ||
|
||
|
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,15 @@ | ||
; 🐟 для Партнёра 01.01 | ||
.tape partner-bin | ||
.binfile hellopartner | ||
.org 0 | ||
prompt equ 0F8C9h | ||
puts equ 0F818h | ||
|
||
lxi hl, msg | ||
call puts | ||
jmp prompt | ||
|
||
msg: | ||
db 1fh,'priwet, mir!',0dh,0ah,0 | ||
|
||
|
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,15 @@ | ||
; 🐟 для Радио-86РК | ||
.tape rk-bin | ||
.binfile hellork | ||
.org 0 | ||
prompt equ 0F86Ch | ||
puts equ 0F818h | ||
|
||
lxi hl, msg | ||
call puts | ||
jmp prompt | ||
|
||
msg: | ||
db 1fh,'priwet, mir!',0dh,0ah,0 | ||
|
||
|
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,6 @@ | ||
; 🐟 для Специалиста | ||
.tape spec-bin | ||
.binfile hellospec | ||
.org 0x100 | ||
db 'wtf' | ||
|
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,6 @@ | ||
; 🐟 для Вектора-06ц | ||
.tape v06c-rom | ||
.binfile hellov06c | ||
.org 0x100 | ||
db 'wtf' | ||
|
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
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
Oops, something went wrong.