Search found 656 matches

by jedie
Tue Jul 15, 2014 5:36 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93905

Re: Dragon emulator written in Python ???

IMHO neally all bugs should be catched in the CPU... I add some tests with the monitor ROM from sbc09... And i add a console script (witch not used socket interprocess communication) for fast tests. Just run: ...path/to/DragonPy$ python2 console_6809_test.py or use PyPy: ...path/to/DragonPy$ pypy co...
by jedie
Tue Jul 15, 2014 3:19 pm
Forum: Dragon General
Topic: disassembled Dragon 32 ROM ?
Replies: 48
Views: 23956

Re: disassembled Dragon 32 ROM ?

by jedie
Tue Jul 15, 2014 2:29 pm
Forum: For Sale
Topic: Request: Two german Books...
Replies: 6
Views: 6269

Re: Request: Two german Books...

http://neil.franklin.ch/Articles/200704 ... reter.html is really interesting to read, IMHO ;)


btw. is there a other (english) book with a ROM Listing?
by jedie
Tue Jul 15, 2014 2:17 pm
Forum: Hints and Tips
Topic: 6809 DAA questions...
Replies: 0
Views: 3018

6809 DAA questions...

I found (maybe the last) but in my Emulator: The DAA Instruction has set wrong CC Flags: https://github.com/jedie/DragonPy/commit/341312d7570bb0e5e30265436a063955164d7a46 I found this by adding unittests with the sbc09 ROM. That's because the BASIC Interpreter doesn't use DAA :P But it don't know it...
by jedie
Tue Jul 15, 2014 10:02 am
Forum: Hints and Tips
Topic: Text based adventures software
Replies: 4
Views: 4432

Re: Text based adventures software

I have a idea for a BASIC editor on PC (Windows/Linux/MacOX) to help writing longer BASIC programs. I would also like to bind it to DragonPy and/or XRoar to easy run changes BASIC code with the emulator. Easier as use XRoar "File/Run" menu entry. The Idea it to copy the listing directly into Emulate...
by jedie
Sun Jul 13, 2014 6:52 pm
Forum: Dragon General
Topic: disassembled Dragon 32 ROM ?
Replies: 48
Views: 23956

Re: disassembled Dragon 32 ROM ?

tormod wrote:Don't ask, don't tell :) I guess it is unclear...
The interesting thing is, that the BASIC is very similar to the Dragon one.

Maybe we can compare and adopt some same lines ;)
by jedie
Sun Jul 13, 2014 5:15 pm
Forum: Dragon General
Topic: disassembled Dragon 32 ROM ?
Replies: 48
Views: 23956

Re: disassembled Dragon 32 ROM ?

from http://archive.worldofdragon.org/phpBB3/viewtopic.php?f=8&t=4894&p=11466#p11466 : ... You can see a commented disassembly here: http://sourceforge.net/p/toolshed/code/ci/default/tree/cocoroms/bas.asm#l4410 Wow. There is the complete commended "Color BASIC 1.3" Listing from "Color BASIC Unravell...
by jedie
Sun Jul 13, 2014 3:04 pm
Forum: Hints and Tips
Topic: How does RND() and TIMER work?
Replies: 13
Views: 11791

How does RND() and TIMER work?

Does anyone know how RND() and the TIMER work on the Dragon? How are they generated?
by jedie
Sun Jul 13, 2014 11:04 am
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93905

Re: Dragon emulator written in Python ???

jedie wrote:XRoar:

Code: Select all

?5/3
 1.66666667
OK

?6/5
 1.2
OK
I have found this bug and get the same output in DragonPy, now. Commit: https://github.com/jedie/DragonPy/commi ... 4fac528353
:D
by jedie
Sun Jul 13, 2014 10:09 am
Forum: Dragon General
Topic: INCB and CC...
Replies: 3
Views: 2114

Re: INCB and CC...