Search results
openMSX Debugger do not like Mac with M1 processor !
Score: 181.87 %,
Type: Forum topic , Comments: 16 comments
40A34BE9-64D9-4835-A509-0F995EF30F7F
Time Awake Since Boot: 82000 seconds
Time Since Wake: 5731 seconds
System Integrity Protection: enabled
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Codes: ...
MSX-DOS How to end a transient program, and returning hand to the system
Score: 169.99 %,
Type: Forum topic , Comments: 5 comments
Hello all,
The Fusion-C : Exit function is calling the MSXDOS Exit routine 0x63 to end ... function 0x62, this also stop the batch, so th progB.com is not executing.
How can I write an exit function that can return hand to the caller ?
I suppose I have to use the DEFINE ABORT ROUTINE 0 ...
How To Load another program from an MSX-DOS's running executable ?
Score: 167.4 %,
Type: Forum topic , Comments: 3 comments
Hi,
I can't understand how I can load a second executable from a program already running under MSX-DOS.
A concrete case:
I want to make a game intro, which will then load the game.
How to proceed ?
Thank you for your answers.
...
Question about the BLOAD "image", S
Score: 165.29 %,
Type: Forum topic , Comments: 3 comments
like this:
10 CLEAR FRE(0)-10
20 BLOAD"IMAGE.SCR",S
30 I$=INPUT$(1)
Very evil! ...
Looking for a PAINT routine for MSX2
Score: 164.94 %,
Type: Forum topic , Comments: 37 comments
https://en.wikipedia.org/wiki/Flood_fill
ericb59 wrote:
Hello,
Perhaps
ericb59 wrote:
Hello,
Perhaps someone here ... for a flood fill algorithm:
10 DEFINT A-Z
20 COLOR 15,0,4:SCREEN 2
30 LINE (1,0)-(1,95)
40 LINE (1,97)-(1,191)
50 LINE (3,49)-(3,143)
60 LINE (5,25)-(5,71)
70 LINE (5,121)-(5,167)
80 FOR I=0 TO 3:LINE ...
Sprite’s path movements
Score: 163.88 %,
Type: Forum topic , Comments: 1 comment
Hi !
I’m looking for a tool to edit sprite’s path movement, that can export data I can use with msx programming.
Do you know such tool ?
have a look at have a look at Tiled
https://doc.mapeditor.org/en/stable/manual/introduction/
objects can be used to set waypoints for enemies in a map
(Development) ...
Fusion-c : fastest routine to read joystick port
Score: 163.01 %,
Type: Forum topic , Comments: 10 comments
ld ix,#0
add ix,sp
ld a,4(ix)
push iy
ld ix,#0x00d5 ; Bios Joystick Read routine
ld iy,(0xFCC0) ; mainrom slotaddress
call 0x001c ; interslotcall
ei
ld l,a ... is the best, and the fastest one ?
di
ld a, #15
out (#0xA0), a
in a, (#0 ...
MSX FUSION-C, Talking about bugs, errors, mistakes
Score: 167.68 %,
Type: Forum topic , Comments: 260 comments
FT_wait(int cicles)
{
int i;
for(i=0;iname[i] = ' ';
}
for( i = 0; (i < 8) && (p_name[i] != 0) && (p_name[i] != '.'); i++ ) {
p_fcb->name[i] = p_name[i];
}
if( p_name[i] == '.' ) {
i++;
for( j = 0; (j < 3) && (p_name[i + j] != 0 ...
MSX-DOS TPA Question
Score: 157.49 %,
Type: Forum topic , Comments: 13 comments
__at(0x8000) map2[27][32];
(I'm afraid of stack growing to much !)
Generally speaking ... checks if the stack is not too close to that area (say, SP minus some margin, f.e. 0x200 >= 0x8000 + ... ReadSP(void)
{
__asm
ld HL,#0
add HL,SP
__endasm;
} SDCC seems to handle int SDCC seems ...
On the Fly Web image conversion for MSX2 screen8 With GR8NET
Score: 151.16 %,
Type: Forum topic , Comments: 7 comments
Hello guys,
This can be the begining for new developpment opportunities for the MSX.
I wrote a little program tha can convert any image found on the web (JPEG) to the MSX2 Screen in a second with the GR8NET Cartridge.
The program is ...
