Page 1 of 1

Calling BASIC from VR_SCRIPT crashes the system and resets.

Posted: Thu Jun 23, 2022 10:33 am
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

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

Posted: Fri Jun 24, 2022 9:28 am
by msxvr
Actualiza el sistema a la build >= 24314
Gracias!

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