Search found 284 matches
- Fri Mar 17, 2023 9:25 am
- Forum: Other VTech systems
- Topic: Salora Manager Disk ROM
- Replies: 47
- Views: 31130
Re: Salora Manager Disk ROM
Provided the audio out is working, it's quite easy to copy the data in tracks, then write each track to audio. No ASM needed - just good old BASIC. The big problem is the PSU. I would expect that once you know what voltages etc are inputs, it could be done. Does someone have a working FDD PSU that t...
- Thu Mar 16, 2023 8:03 pm
- Forum: Other VTech systems
- Topic: Salora Manager Disk ROM
- Replies: 47
- Views: 31130
Re: Salora Manager Disk ROM
Today I was looking through the latest Mame release files and stumbled upon the attached for the Laser 2001. I think it is an attempt to copy a floppy disk - but sadly has missing sectors. Perhaps used Apple sector count instead of Laser DOS? The file identifies as 'Kaarne' which google translates t...
- Wed Mar 15, 2023 7:31 pm
- Forum: Other VTech systems
- Topic: Salora Manager / Laser 2001 BASIC
- Replies: 29
- Views: 345
Re: Salora Manager / Laser 2001 BASIC
The Salora Manager and Laser 2001 roms only differ in version number, keyboard mapping table for funky characters and tape timings. Otherwise they are identical, and you can apply the tokens.s patch at offset $19F over the existing token name table. If you were going to change a real machine, I woul...
- Wed Mar 15, 2023 5:23 pm
- Forum: Other VTech systems
- Topic: Salora Manager / Laser 2001 BASIC
- Replies: 29
- Views: 345
Re: Salora Manager / Laser 2001 BASIC
Attached is the Salora Manager ROM and token name listing amendment.
This is to enable using the functions which are in the BASIC rom within an emulator.
I have removed the redundant MUSIC and FLASH token names, as they do nothing, and added POP, DEF, FN and USR.
This is to enable using the functions which are in the BASIC rom within an emulator.
I have removed the redundant MUSIC and FLASH token names, as they do nothing, and added POP, DEF, FN and USR.
- Tue Mar 14, 2023 7:31 pm
- Forum: Other VTech systems
- Topic: Laser 2001 & Salora Manager - official thread
- Replies: 155
- Views: 122742
Re: Laser 2001 & Salora Manager - official thread
The Salora advert is strange, in that it just advertises creatiVision software.
Now we need to find a Laser 2001 advert!
Now we need to find a Laser 2001 advert!
- Tue Mar 14, 2023 6:22 pm
- Forum: Other VTech systems
- Topic: Salora Manager / Laser 2001 BASIC
- Replies: 29
- Views: 345
Re: Salora Manager / Laser 2001 BASIC
Put the JOY back in Salora BASIC just needs a little bit of ASM to keep the BASIC engine happy. 10 FOR X = 0 TO 77 20 READ B 30 POKE 17408 + X,B 40 NEXT X 50 CALL 17408 60 PRINT PEEK (208) 70 GOTO 50 1000 DATA 72,138,72,162,3,169,0,149 1010 DATA 208,202,16,251,162,31,181,0 1020 DATA 157,192,3,202,16...
- Mon Mar 13, 2023 6:54 pm
- Forum: Other VTech systems
- Topic: Salora Manager / Laser 2001 BASIC
- Replies: 29
- Views: 345
Re: Salora Manager / Laser 2001 BASIC
USR The USR function is also still there as a token (213). All it does is jump to ZP $0A. As in AppleSoft BASIC, the JMP vector defaults to the ILLEGAL QUANTITY ERROR text. 100 A=USR(100) Salora BASIC would be 100 A=SGN(100) then replace the SGN token with 213 ($D5) The difference between the CALL ...
- Sun Mar 12, 2023 10:06 pm
- Forum: Other VTech systems
- Topic: Salora Manager / Laser 2001 BASIC
- Replies: 29
- Views: 345
Re: Salora Manager / Laser 2001 BASIC
DEF FN Again these exist as tokens only - so POKEing the program is the way to go! An example of the standard function 10 DEF FN A(W)=W*1000 20 PRINT FN A(10) When run, the result 10000 is displayed. So how is this achieved on Salora Manager BASIC? Step 1 Use SGN token as a place holder. 10 SGN SGN...
- Sun Mar 12, 2023 3:24 pm
- Forum: Other VTech systems
- Topic: Salora Manager / Laser 2001 BASIC
- Replies: 29
- Views: 345
Re: Salora Manager / Laser 2001 BASIC
POP Applesoft had a useful function called POP, which essentially converts a GOSUB into a GOTO by removing the return address and continuing. So, how do you use it in a program? A little bit of jiggerry POKEerry is needed. 10 GOSUB 100 20 PRINT "RETURNED OK" 30 END 100 RETURN 110 PRINT "POP OK" 120...
- Sun Mar 12, 2023 2:12 pm
- Forum: Games programming
- Topic: GPL on MegaSDCart
- Replies: 33
- Views: 550
Re: GPL on MegaSDCart
Complete with red LED 
Just need to age the case to be more used and abused, and stick on ebay as an attic find

Just need to age the case to be more used and abused, and stick on ebay as an attic find
