Calling BASIC from VR_SCRIPT crashes the system and resets.

This forum is checked by MSXVR Team. If you need to report some bug, use this forum, mantis or REPORT tool in your MSXVR machine.
Post Reply
Javi
Posts: 29
Joined: Sat Jun 11, 2022 5:14 am
Been thanked: 10 times

Calling BASIC from VR_SCRIPT crashes the system and resets.

Post by Javi »

Llamadas BASIC desde VR_SCRIPT hacen petar el sistema y se resetea.

Programas como

Hola mundo en VR-BASIC

Code: Select all

class E3 implements BASIC_Program
{
    virtual Start()
    {
        Screen (0);
        Color (15, 1, 1);
        Cls ();
        KeyOff ();
        Print("Hola mundo!");
    }
}
Dibujar en modo BASIC-Script

Code: Select all

class BasExample implements BASIC_Program
{
    virtual Start()
    {
        Screen(2);
        PSet(100, 100, 5);
        Line(20, 20, 300, 250, 8);
    }
}
http://msxvr.es/doc/wiki/mdwiki.html#!3 ... 6c2ddf6.md

Hola mundo en VR-BASIC

Code: Select all

class Ejemplo3 implements BASIC_Program
{
   virtual Start()
   {
      Screen (0);
      Color (15, 1, 1);
      Cls ();
      KeyOff ();
      Print("Hola mundo!");
   }
}
https://msxvr.com/vrscript-examples/


Hacen petar el sistema y se reseta.




Calling BASIC from VR_SCRIPT crashes the system and resets.

Programs like that

Hola mundo en VR-BASIC

Code: Select all

class E3 implements BASIC_Program
{
    virtual Start()
    {
        Screen (0);
        Color (15, 1, 1);
        Cls ();
        KeyOff ();
        Print("Hola mundo!");
    }
}
Dibujar en modo BASIC-Script

Code: Select all

class BasExample implements BASIC_Program
{
    virtual Start()
    {
        Screen(2);
        PSet(100, 100, 5);
        Line(20, 20, 300, 250, 8);
    }
}
http://msxvr.es/doc/wiki/mdwiki.html#!3 ... 6c2ddf6.md

Hola mundo en VR-BASIC

Code: Select all

class Ejemplo3 implements BASIC_Program
{
   virtual Start()
   {
      Screen (0);
      Color (15, 1, 1);
      Cls ();
      KeyOff ();
      Print("Hola mundo!");
   }
}
https://msxvr.com/vrscript-examples/

crashes the system and resets
msxvr
Posts: 65
Joined: Mon Sep 27, 2021 11:10 am
Has thanked: 6 times
Been thanked: 59 times

Re: Calling BASIC from VR_SCRIPT crashes the system and resets.

Post by msxvr »

Actualiza el sistema a la build >= 24314
Gracias!

Update your system to the build >= 24314
Thank you!
Post Reply