rrrola information 319 glöps

- general:
- level: user
- personal:
- first name: Jan
- last name: Kadlec
- 64b MS-Dos MagixFly
- Welcome!
Here's how to make the code 51 bytes without changing very much how it works, just switching some registers:
Code:; es:di = pixel address, bx=time, bp=y, cx=x OFFSETY equ 12 org 100h mov al,19 int 10h push 0A000h pop es reloop: mov bp,OFFSETY loopY: inc bp mov ax,0A00h cwd ; dx=0 (ax=2560) div bp add ax,bx xchg ax,si mov cx,320 loopX: imul ax,cx,16 cwd ; dx=0 (ax<=5120) div bp xor ax,si add al,bh and al,31 stosb test di,di loopnz loopX jnz loopY ; di=0 after the loop inc bx mov ah,1 int 16h je reloop ret
- isokadded on the 2025-04-23 16:25:58
- 256b procedural graphics TIC-80 exploring the henge
- Huge thumbs up.
I like the implication that it's just a few pieces of an even bigger ring. - rulezadded on the 2025-02-16 23:26:14
- 256b MS-Dos Remnants by Alcatraz [web]
- The atmosphere is so good it even convinced the fractal antis.
Thanks for the code. ;) - rulezadded on the 2024-04-01 22:24:56
- 256b game MS-Dos octagon
- I'm getting the hang of it, nice idea. Needs scoring. :)
- rulezadded on the 2024-03-30 22:55:21
- 256b MS-Dos Overdriven by Digimind
- This is a work of art. The code is too.
- rulezadded on the 2024-02-23 01:41:22
- 256b MS-Dos Computer Fantasies by wamma [web]
- I've combined X and Y into one opcode (+9 bytes) and experimented with deeper stack reads (+16 bytes) and subroutine calls (+25 bytes): updated link
The added complexity isn't worth it for these effects, but the calls should be useful for something more complex. - isokadded on the 2024-02-19 18:57:55
- 256b MS-Dos Computer Fantasies by wamma [web]
- Replacing X, Y with X-64, Y-64 and reading bits in the other direction saves a few more bytes, but it's slipping away from your original: updated link
- isokadded on the 2024-02-14 19:11:23
- 256b MS-Dos Computer Fantasies by wamma [web]
- Inspiring and nerd-sniping!
I've found a few bytes to save in the interpreter: link - rulezadded on the 2024-02-12 23:09:47
- 256b MS-Dos Mariana (multiprocessor intro teaser) by Jin X
- This is extraordinary. Kudos for pushing the boundaries of what's possible in tiny intros.
- rulezadded on the 2024-02-12 10:37:04
- 256b procedural graphics MS-Dos Drinking Fountain by Digimind
- I really liked this so I've made a Shadertoy conversion.
- rulezadded on the 2024-02-11 01:57:00
account created on the 2007-01-15 21:05:11