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
; the macro syntax is impossible to patch from outside (the "&" operators for label/arguments), | |
; so macros had been hard-edited to sjasmplus syntax. Other incompatible lines are amended | |
; through DEFINEs and OPT adjusting sjasmplus parsing | |
; some defines to change unknown syntax/decorations to nothing or silent assert to ignore them | |
DEFINE title assert 1, | |
DEFINE aseg | |
DEFINE local assert 1, | |
DEFINE error assert 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
; Author: Ped7g ; (C) 2021 ; license: https://opensource.org/licenses/MIT | |
; Z80N (ZX Next) assembly, sjasmplus syntax: https://github.com/z00m128/sjasmplus | |
; | |
; code-size optimisation for larger next-reg init block, where `nextreg r,v` ED91rrvv | |
; opcode takes four bytes for every next-reg set, so a block of 20 pair values takes | |
; 80 bytes (with the "setup_next_regs_v2" approach such block will take only 58 bytes) | |
;---------------------------------------------------------------------------------------- | |
; variant 1, reads next-reg pairs from particular memory address | |
; this will break-even at 8 value pairs, every one more pair is two byte less |
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
; Author: Ped7g ; (C) 2021 ; license: https://opensource.org/licenses/MIT | |
; Z80 assembly, syntax for sjasmplus: https://github.com/z00m128/sjasmplus | |
; to build: sjasmplus AllanTurveyCheckerboard.asm | |
OPT --syntax=abf : DEVICE ZXSPECTRUM48,31999 : ORG $8000 | |
; D:E = field height:width, A = attribute, modifies: AF, HL, BC, IXL | |
drawCheckerboard: | |
ld hl,$5800 | |
.alternateLine | |
xor $40 ; alternate BRIGHT 1 |
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
; Authors: Omega, Ped7g, Baze ; (C) 2021 ; license: https://opensource.org/licenses/MIT | |
; Z80 assembly, syntax for sjasmplus: https://github.com/z00m128/sjasmplus | |
; to assemble run: sjasmplus omega_fades_2.asm | |
OPT --syntax=abf | |
DEVICE ZXSPECTRUM48,31999 | |
ORG $8000 | |
; uncomment and set to available SCR file to run the effect on ZX screen image (6912 bytes) | |
; DEFINE SCR_FILE "diver - Mercenary 4. The Heaven's Devil (2014) (Forever 2014 Olympic Edition, 1).scr" |
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
; (C) [copyleft] 2021 Peter Helcmanovsky | |
; License: CC0 https://creativecommons.org/share-your-work/public-domain/cc0 | |
; | |
; x86_64 linux asm example of base64 encoding | |
; | |
; reads stdin, encodes it to base64 without new-lines, outputs to stdout | |
; | |
; the code is meant to be rather straightforward and simple (for lecturing purpose), | |
; not performance optimal | |
; |
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
; Authors: Omega, Ped7g, Baze ; (C) 2021 ; license: https://opensource.org/licenses/MIT | |
; Z80 assembly, syntax for sjasmplus: https://github.com/z00m128/sjasmplus | |
; to assemble run: sjasmplus omega_fades.asm | |
OPT --syntax=abf | |
DEVICE ZXSPECTRUM48,31999 | |
ORG $8000 | |
;------------------------------------------------------------------------------ | |
; ULA attributes "fade out" effect, going through PAPER/INK values, | |
; decrements them (individually) by 1 every iteration (call of routine) |
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
; to assemble: sjasmplus asterisk_vs_exclamation_char.asm | |
DEVICE ZXSPECTRUM48,31999 : OPT --zxnext | |
ORG $8000 | |
font: | |
ASSERT 0 == high(font) % 8 ; must reside at aligned-enough address to fit this | |
ds '!'*8,0 ; don't bother to define other chars, go to exclamation mark | |
dg ---##--- | |
dg ---##--- | |
dg ---##--- |
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
; show how 8-bit color values RRRGGGBB are being extended to full 9-bit definition | |
; displays blue squares with 8bit blue part 0, 1, 2, 3 (all possible blue shades in 8b) | |
; and under them the 9bit defined blues as %000, %011, %101, %111 (how 8b extends to 9b) | |
; assembling: sjasmplus color8vs9b.asm ( https://github.com/z00m128/sjasmplus ) | |
DEVICE ZXSPECTRUMNEXT : OPT --syntax=abfw | |
ORG $8000 | |
start: | |
di | |
ld a,7 |
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
DEFINE USE_DMA_TO_CLEAR_SCREEN ; comment out to get LDIR clear version | |
DEFINE USE_DOUBLE_BUFFERING ; comment out to see single-buffer redraw issues | |
DEVICE ZXSPECTRUMNEXT | |
BORDER MACRO color? | |
ld a,color? | |
out (254),a | |
ENDM |
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
DEVICE ZXSPECTRUMNEXT | |
ORG $8000 ; this example does map Bank5/Bank7 ULA to $4000 (to use "pixelad" easily) | |
mainLoop: | |
call FlipULABuffers ; flip the buffer screen to visible screen and flip buffer | |
call drawDot | |
jr mainLoop | |
FlipULABuffers: ; Flip ULA/Alt ULA screen (double buffer ULA screen) | |
; ret ; uncomment to see effect of non-double-buffered running (blinking dots) | |
ld a,(ULABank) ; Get screen to display this frame |