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
; 🐟 (try me) | |
; 8080 assembler code | |
.project hellorld.com | |
bdos equ 5 | |
.org 100h | |
lxi d, msg | |
mvi c, 9 | |
call bdos | |
ret | |
msg: |
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
@echo off | |
setlocal enabledelayedexpansion | |
set input=%1 | |
set output=%2 | |
set startaddr=%3 | |
set inputfile=%~dp0%~1 | |
set outputfile=%~dp0%~2 |
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
; Быстрое проявление мандрила с использованием LFSR | |
; Эту 🐟 сделал Иван Городецкий, 04.10.2017 | |
.project babdis.rom | |
.tape v06c-rom | |
.org 100h | |
di | |
xra a |
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
;AY emulator on VI53 v0.1 | |
;Компилировать в TASM - A Table Driven Cross Assembler for the MSDOS* Environment (tasm 3.01 или 3.2) | |
;Иван Городецкий 04.05.2009 | |
;ПО "Счетмаш" 1988-1990 | |
; a = psg register number | |
; e = data | |
WRTPSG: | |
push h |
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
100 CLEAR1000,&HD8FF | |
:KEYOFF | |
:SCREEN1,2,0 | |
:COLOR 2,1,1 | |
:WIDTH 32 | |
:DEFINT A-Y | |
110 GOSUB 2200 | |
:GOSUB 1960 | |
:HS=2000 | |
120 DIM FR(5),M(2),MX(2),MY(2): |
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
; Song title: EA at feb 2018 (YM+ABC) | |
; | |
; compressed into 14 parallel streams from YM6 file saved by register | |
; | |
; This example is decompressing and playing 14 parallel streams. | |
; Compressed data size 2310 bytes (uncompressed 61586) | |
; | |
; code by svofski 2022 | |
; | |
; |
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
; jinj_med from Arkos Tracker 2 demo songs | |
; wyz.ym stripped from headers | |
; salvador -classic -w 255 wyz.ym wyz.w256 | |
; compressed data size 4022 bytes (uncompressed 30724) | |
.project cancion-nueva.rom | |
.org $100 | |
; ----------------------------------------------------------------------------- | |
; ZX0 8080 decoder by Ivan Gorodetsky - OLD FILE FORMAT v1 | |
; Based on ZX0 z80 decoder by Einar Saukas |
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
; player + songe ripped from polet4k ~ 50 lines | |
; tune: DOCZak1 by DOC'NEONSOFT | |
.project p4kplayer.rom | |
.tape v06c-rom | |
.org $100 | |
di | |
xra a | |
out $10 |
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
; 🐟 для Вектора-06ц | |
; | |
; Пример печати цветного текста в режиме 512х256 | |
; | |
; svofski, ivagor 2022 | |
; | |
.project text512v+reverse+color.rom | |
.tape v06c-rom | |
.encoding cp1251 |
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
; Вектор-06ц | |
; | |
; Пример рисования в режиме 512x256 4 цвета | |
; | |
.project test512-4col.rom | |
.tape v06c-rom | |
.encoding cp1251 | |
rastint .equ 38h ; прервывание обратного хода луча |
NewerOlder