MMBasic for Windows - alphas


Author Message
Pluto
Guru

Joined: 09/06/2017
Location: Finland
Posts: 411
Posted: 08:51pm 22 Feb 2022      

Tested a7 for MM.INFO.
-MM.INFO(FILESIZE) gives syntax error
-MM.INFO(WRITEPAGE) gives syntax error
-MM.INFO(ERRMSG) crashes the program. Initially it was Ok, but now several restarts and crashes. In fact crashes every time now.

Simple testprogram. I had to comment out the lines that gave errors in order to complete the tests.
?"SOUND: ";
?MM.INFO(SOUND)
?"MAX PAGES: ";
?MM.INFO(MAX PAGES)
?"PAGE ADDRESS: ";
'?MM.INFO(PAGE ADDRESS)
?"FRAMEBUFFER: ";
?MM.INFO(FRAMEBUFFER)
?"DIRECTORY: ";
?MM.INFO(DIRECTORY)
?"EXISTS FILE: ";
'?MM.INFO(EXISTS FILE)
?"EXISTS DIR: ";
'?MM.INFO(EXISTS DIR)
?"OPTION AUTORUN: ";
?MM.INFO(OPTION AUTORUN)
?"OPTION EXPLICIT: ";
?MM.INFO(OPTION EXPLICIT)
?"OPTION BASE: ";
?MM.INFO(OPTION BASE)
?"PROGRAM: ";
?MM.INFO(PROGRAM)
?"AUTORUN: ";
?MM.INFO(AUTORUN)
?"DEVICE): ";
?MM.INFO(DEVICE) ' (same as MM.DEVICE$)
?"DEFAULT PATH: ";
?MM.INFO(DEFAULT PATH)
?"VERSION: ";
?MM.INFO(VERSION) ' (same as MM.VER)
?"VARCNT: ";
?MM.INFO(VARCNT)
?"CURRENT: ";
?MM.INFO(CURRENT)
?"FONTWIDTH: ";
?MM.INFO(FONTWIDTH)
?"FONTHEIGHT: ";
?MM.INFO(FONTHEIGHT)
?"FILESIZE: ";
'?MM.INFO(FILESIZE)
?"SYNTAX ERROR"
?"FONTCOUNT: ";
?MM.INFO(FONTCOUNT) ' (how many chars are available in current font)
?"WIDTH: ";
?MM.INFO(WIDTH)
?"HEIGHT: ";
?MM.INFO(HEIGHT)
?"HPOS: ";
?MM.INFO(HPOS)
?"VPOS: ";
?MM.INFO(VPOS)
?"FCOLOUR: ";
?MM.INFO(FCOLOUR)
?"BCLOUR: ";
?MM.INFO(BCOLOUR)
?"FRAMEH: ";
?MM.INFO(FRAMEH)
?"FRAMEV: ";
?MM.INFO(FRAMEV)
?"WRITEPAGE: ";
'?MM.INFO(WRITEPAGE)
?"syntax error"
?"FONT: ";
?MM.INFO(FONT)
?"ERRNO: ";
?MM.INFO(ERRNO)
?"ERRMSG: ";
'?MM.INFO(ERRMSG)
?"CRASHES THE PROGRAM"
?"OPTION BREAK: ";
?MM.INFO(OPTION BREAK)

end


Regards Fred