Search found 656 matches

by jedie
Wed Sep 11, 2013 7:12 pm
Forum: Dragon General
Topic: d32.rom 16384Bytes - ROM 16383Bytes ?!?!
Replies: 2
Views: 1873

Re: d32.rom 16384Bytes - ROM 16383Bytes ?!?!

Hm! Thanks. :oops:
by jedie
Wed Sep 11, 2013 5:05 pm
Forum: Dragon General
Topic: d32.rom 16384Bytes - ROM 16383Bytes ?!?!
Replies: 2
Views: 1873

d32.rom 16384Bytes - ROM 16383Bytes ?!?!

From http://dragon32.info/info/memmap.html :
$8000-bfff BASIC ROM in 32K mode
But $BFFF-$8000 are 16383Bytes
The "d32.rom" file is 16384Bytes

Why?
by jedie
Wed Sep 11, 2013 7:30 am
Forum: Dragon General
Topic: Cloud 9's "Flash Pak"
Replies: 1
Views: 1411

Cloud 9's "Flash Pak"

Seems that Cloud 9's "Flash Pak" will be available in 1-2Month, see: http://five.pairlist.net/pipermail/coco/2013-September/071310.html I will making a small FLASH pak that is a subset of the logic that is on the sIDE board. Target price is $40 +s/h. Target time - 30-45 days. More info here: http://...
by jedie
Wed Sep 11, 2013 7:28 am
Forum: Software Requests
Topic: Memory Hex viewer ?
Replies: 7
Views: 6684

Re: Memory Hex viewer ?

tormod wrote:I wrote a BASIC monitor program back in the eighties which I used a lot for entering machine code and debugging, but I will need to rescue it from some old tapes if anyone is interested.
Would be great if you can do that. :)
by jedie
Tue Sep 10, 2013 10:16 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93790

Re: Dragon emulator written in Python ???

I stoped the work on https://github.com/jtauber/applepy/pull/19 because applepy seems to be "done" and James Tauber starts https://github.com/jtauber/pycpu the 6809 is planned... But i have interests in how a CPU worked and how to implement this in Python... So i have to cleanup the old applepy fork...
by jedie
Tue Sep 10, 2013 7:38 am
Forum: Hints and Tips
Topic: Let there be fractals!
Replies: 8
Views: 4413

Re: Let there be fractals!

robcfg wrote:By the way, the SAVE statement on line 1630 is not an error, it's for saving the image to disk rather than tape. If you have a disk controller attached, it will save the image to the file name you specify.
Ah! I need to add DOS tokens in PyDC ;)
by jedie
Mon Sep 09, 2013 5:52 pm
Forum: Hints and Tips
Topic: Let there be fractals!
Replies: 8
Views: 4413

Re: Let there be fractals!

Seems that there is a error in line 1630... Patch:

Code: Select all

- 1630 SAVE N$,VM,VM+6144,VM
+ 1630 CSAVE N$,VM,VM+6144,VM
isn't it?


EDIT: btw. for better usage: Use INKEY$ for the choice questions...
IMHO change the COORDINATE input and let the user just press ENTER for the default's for a full fractal.
by jedie
Mon Sep 09, 2013 5:48 pm
Forum: Hints and Tips
Topic: PyDC converter (was: dragon 32 cassette format ?)
Replies: 80
Views: 54289

Re: dragon 32 cassette format ?

jedie wrote:The only bad thing is that the blocks not limited to 255 characters, yet, if source is .bas... But this will come ;)
Done with https://github.com/jedie/PyDragon32/com ... 96ea0f1b11
:P
by jedie
Mon Sep 09, 2013 4:54 pm
Forum: Software Requests
Topic: OpenSource Dragon BASIC code???
Replies: 3
Views: 4222

Re: OpenSource Dragon BASIC code???

robcfg wrote:You can take a look at the Fractal rendering program I made in basic.

It's here.
Can you add a license in the code?
by jedie
Mon Sep 09, 2013 3:04 pm
Forum: Software Requests
Topic: Memory Hex viewer ?
Replies: 7
Views: 6684

Memory Hex viewer ?

Exist there somewhere a memory hex viewer? If not, i will start to implement this in BASIC: Simply PEEK the memory and display it with as HEX code...

(Don't know if i can simply PEEK everywhere... Maybe i must exclude some special areas?)