Search results
My first steps into MSX dev world ;)
Score: 142.49 %,
Type: Forum topic , Comments: 26 comments
{
__asm
call 0x0041 // screen off
__endasm;
__asm
ld a,#2
call 0x005F // passe en mode ... Hi MSX gurus
Today, I've decided to code on MSX using SDCC 4.0.0
I code on w10 ... the 3 parts displaying after each one (if I switch off the screen (call 0x41) before displaying picture) ...
New Screen 1 drawing program in Assembly (soon to use the full color VDP hack)
Score: 142.17 %,
Type: Forum topic , Comments: 9 comments
like screen 1. I have used this mode in the past with code like this:
10 SCREEN 1,0: WIDTH 32: KEY OFF: COLOR 15,1,1
20 SCREEN 2,0: POKE &HFCAF,1 Awesome!!
Nicely designed and Awesome!! ...
How to disable click sound in DOS (msxbios option in Z88DK)?
Score: 141.94 %,
Type: Forum topic , Comments: 10 comments
CLIKSW 0xF3DB
Poke( CLIKSW, 0 ); // Turn off key click
Sounds strange ... post. I am asking for the equivalent location of 0xF3DB for click sound under MSXDOS.
The keyboard ... it then if I enable the msxbios in Z88DK?
Writing zero into 0xF3DB does not work. I think something ...
Christmas miracle
Score: 142.08 %,
Type: Forum topic , Comments: 7 comments
Yesterday a Christmas miracle happened, when I went to get my parents to spent Christmas at our house.
My father gave me a box that he found in the attic.
Now my parents attic is best described as a post apocalypse storage facility, so when I ...
Jipes 2020 christmas SCC tune
Score: 154.49 %,
Type: Download , Comments: 0 comments
Jipe
0
A little SCC tune contributed by Jipe for the 2020 christmas quiz.
Attachment Size Downloads Last download
xmas.scc_.zip 33.79 KB 34 ...
Sprite Editor for Sprites Mode 2 (using OR color)
Score: 141.99 %,
Type: Forum topic , Comments: 27 comments
vector < int > > bitmap;
for (int y = 0; y < 192; y++)
{
vector < int > line;
for (int x = 0; x < 128; x++)
{
int value = in.get();
line.push_back(value >> 4);
line.push_back(value & 0xF);
} ...
