Search found 656 matches

by jedie
Wed Aug 27, 2014 11:41 am
Forum: Discuss This Site
Topic: ROMs download
Replies: 5
Views: 5956

ROMs download

What's about to add the ROMs from http://www.colorcomputerarchive.com/coc ... MESS/ROMS/ in archive, too?
by jedie
Wed Aug 27, 2014 11:21 am
Forum: Hints and Tips
Topic: Dragon vs. CoCo BASIC
Replies: 6
Views: 5317

Re: Dragon vs. CoCo BASIC

So i add a simple script to generate a Wiki table, here: http://archive.worldofdragon.org/index.php?title=Tokens I updated the script with https://github.com/jedie/DragonPy/commit/ba643b9efb0b4d46448450d5448c67a4aeae4846 and update the Wiki page to list CoCo tokens from "Color BASIC 1.3" and "Exten...
by jedie
Tue Aug 26, 2014 8:46 pm
Forum: Hints and Tips
Topic: Dragon vs. CoCo BASIC
Replies: 6
Views: 5317

Re: Dragon vs. CoCo BASIC

Ah... If you search for "MESS BIOS images" you will find e.g.: http://mess.oldos.net/ There are many, many ROM files. In coco2b.zip are two files: bas13.rom and extbas11.rom ... With: xroar -keymap de -kbd-translate -default-machine coco -bas bas13.rom -extbas extbas11.rom -nodos it starts with: Mod...
by jedie
Tue Aug 26, 2014 8:40 pm
Forum: Hints and Tips
Topic: Dragon vs. CoCo BASIC
Replies: 6
Views: 5317

Re: Dragon vs. CoCo BASIC

I try to startup XRoar with Extendet color BASIC, but doesn't work. I do this: xroar -keymap de -kbd-translate -default-machine coco -bas 'Color Basic v1.3 (1982)(Tandy).rom' -extbas ExtendedColorBasic1.1.rom -nodos Output is this: Module init: GTK+-2 UI Module init: GTK+-2 file requester Module ini...
by jedie
Mon Aug 25, 2014 8:08 am
Forum: Dragon General
Topic: Request: Small BASIC programs...
Replies: 9
Views: 6390

Re: Request: Small BASIC programs...

This would be just one of a lot more steps to optimize a BASIC program. In summary this difference is remarkable. There are several summary ups of "golden rules" around (currently no link handy) to get the most out of BASIC programs MS-based interpreters. That would be interesting. Maybe start a ne...
by jedie
Wed Aug 20, 2014 10:14 pm
Forum: Hints and Tips
Topic: BASIC code editor...
Replies: 5
Views: 7193

Re: BASIC code editor...

With the latest commits from today, it also worked now with CoCo Color BASIC 1.3...

Just start: /path/to/DragonPy$ ./CoCo_test.py
by jedie
Wed Aug 20, 2014 10:12 pm
Forum: Hints and Tips
Topic: Dragon vs. CoCo BASIC
Replies: 6
Views: 5317

Re: Dragon vs. CoCo BASIC

Hm... I played with some BASIC Scripts now with the CoCo Color BASIC 1.3 and found, that hex values doesn't work :( PRINT &H100 results in a SN ERROR... So my Hex Viewer programm (See http://archive.worldofdragon.org/phpBB3/viewtopic.php?f=4&t=4348&p=9440&hilit=hex+viewer#p9437 ) doesn't work, becau...
by jedie
Wed Aug 20, 2014 9:36 pm
Forum: Dragon General
Topic: Request: Small BASIC programs...
Replies: 9
Views: 6390

Re: Request: Small BASIC programs...

Thanks, really nice!

It works, but it seems that ARRAY values are wrong. All values have a "offset" +1 ?!?
e.g.: The example array A(0,1,2) is displayed as A(1,2,3)

btw. i add your script here: https://gist.github.com/jedie/c31b7df2f ... /revisions and renumber it.
by jedie
Wed Aug 20, 2014 8:41 pm
Forum: Hints and Tips
Topic: Dragon vs. CoCo BASIC
Replies: 6
Views: 5317

Dragon vs. CoCo BASIC

I start to add CoCo support in DragonPy BASIC Editor... So i need the CoCo Color BASIC tokens... I found: http://sourceforge.net/p/toolshed/code/ci/default/tree/cocoroms/bas.asm and convert it to a Python dictionary: https://github.com/jedie/DragonPy/blob/master/dragonlib/CoCo/basic_tokens.py Then i...
by jedie
Wed Aug 20, 2014 5:17 pm
Forum: Hints and Tips
Topic: BASIC code editor...
Replies: 5
Views: 7193

Re: BASIC code editor...

Currently it looks like this: http://www.jensdiemer.de/static/jensdiemer.de/screenshots/20140820_DragonPy_BASIC_Editor_01.png To give it a try: # clone the repro: ~$ git clone https://github.com/jedie/DragonPy.git # Alternative download as .zip: https://github.com/jedie/DragonPy/archive/master.zip ~...