Search results
function prototype without (void)
Score: 169.43 %,
Type: Forum topic , Comments: 4 comments
func2(void); // compile
int main()
{
func1();
return 0;
}
ASM generated with error:
;* * * ... "#z80_crt0.hdr"
._func1
ret
._main
call func1
ld hl,0 ;const
ret
; --- Start of Static ...
"Orpheus" from book "Programação Avançada em MSX"
Score: 169.85 %,
Type: Forum topic , Comments: 3 comments
I typed the game Orpheus of the book "Programação Avançada em MSX" (Advanced MSX Programming).
Play Online
Files
Code
Book
It's a good option to study Assembly.
Great! I have typed that in ...
My Tetris
Score: 175.11 %,
Type: Forum topic , Comments: 7 comments
In 1992, in a small town in the interior of Brazil, I saw the picture of the Tetris game in a magazine, and read the text about how to play the game.
Since I had no way to play the game, I made my one (based on the photo and instructions).
...
RGB to MSX Colors
Score: 169.27 %,
Type: Forum topic , Comments: 14 comments
Looking for how to convert RGB colors to MSX1 colors (with no dithering), I wanted to find the color on the palette closest to the original RGB color, I found the CIEDE2000 algorithm very interesting.
The image is an example of the ...
