Search found 656 matches

by jedie
Wed Jul 30, 2014 3:16 pm
Forum: Dragon General
Topic: disassembled Dragon 32 ROM ?
Replies: 48
Views: 23968

Re: disassembled Dragon 32 ROM ?

From the code listing: BB39 0000 neg <$00 BB3B 00CC neg <$cc BB3D 0034 neg <$34 BB3F 8EFF00 ldx #$ff00 ; $FF00 PDR rrrrrrrr BB42 A701 sta 1,x ; $FF02 PDR wwwwwwww BB44 A703 sta 3,x ; CA2 bit3 output mode BB46 A784 sta ,x ; CB2 bit3 output mode BB48 43 coma ; IRQA disabled (hsync) BB49 A702 sta 2,x ...
by jedie
Wed Jul 30, 2014 3:14 pm
Forum: Dragon General
Topic: disassembled Dragon 32 ROM ?
Replies: 48
Views: 23968

Re: disassembled Dragon 32 ROM ?

I found http://www.6809.org.uk/tmp/da/d64_1.lis :D And i quick hack a script to add the comments from mem-info to the listing with https://github.com/6809/rom-info/commit/b2e96ddaf9002c14a7e9e6fbdb2abc0df8e16637 e.g.: python add_comments.py d64_1.lis d64_comments.lis --meminfo="Dragon 64 in 32 mode....
by jedie
Wed Jul 30, 2014 1:34 pm
Forum: Dragon General
Topic: disassembled Dragon 32 ROM ?
Replies: 48
Views: 23968

Re: disassembled Dragon 32 ROM ?

Hm! OK, it seems that i have to add more informations to the perl script. Like "fcb=" and "fdb=", isn't it?
by jedie
Wed Jul 30, 2014 1:11 pm
Forum: Dragon General
Topic: Retro Revival Event 9th August
Replies: 9
Views: 6345

Re: Retro Revival Event 9th August

Some more information would be good. It's in UK. From http://www.revivalretroevents.com/index.php/component/vikevents/?task=viewevent&itid=3 : Event Details Wolverhampton Race, Course, Dunstall Park, Wolverhampton Reservations Until: 08/08/2014 11:00 AM Starts on: 09/08/2014 10:30 AM Ends on: 10/08/...
by jedie
Tue Jul 29, 2014 4:42 pm
Forum: Dragon General
Topic: disassembled Dragon 32 ROM ?
Replies: 48
Views: 23968

Re: disassembled Dragon 32 ROM ?

I have used "sorchard" Dragon 64 Information and merge it with a disassembled rom, with the Perl scripts from http://www.6809.org.uk/dragon/ Now i have some missmatches, for this: $bb3c-$bb7e ; * reset routine continued $bb3c ; initialise PIA0: $bb3f ; $FF00 PDR rrrrrrrr $bb42 ; $FF02 PDR wwwwwwww $...
by jedie
Mon Jul 28, 2014 1:28 pm
Forum: Dragon General
Topic: List of good working TFT for PAL/NTSC?
Replies: 7
Views: 7154

Re: List of good working TFT for PAL/NTSC?

Next TFT: HYUNDAI Model: L19T Type: L19A0D061
Only Tested with Dragon 64, yet.

Works ok. I see color. Not total smooth, but that's normal, isn't it?
by jedie
Sun Jul 27, 2014 9:26 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93919

Re: Dragon emulator written in Python ???

I'm happy!!!! Because i see with https://github.com/jedie/DragonPy/commit/543275b1b90824b64b67dcd003cc5ab54296fc15 this: ````hCi`qyxr`DRAGON`DATA`LTD````````qvK`BASIC`INTERPRETER`qnp```````hCi`qyxr`BY`MICROSOFT```````````````````````````````````````````OK` It's just a char = chr(byte) , so only a fe...
by jedie
Sat Jul 26, 2014 11:20 am
Forum: Dragon General
Topic: XRoar API ?!?
Replies: 6
Views: 2477

Re: XRoar API ?!?

I have no experience in this.

I created a first test script in Python, here: https://github.com/jedie/PyDragon32/blo ... b_tests.py

I just send a "g" and get '$S02#b5' back. This seems to be wrong.

Can you give some examples?
by jedie
Fri Jul 25, 2014 2:01 pm
Forum: Dragon General
Topic: XRoar API ?!?
Replies: 6
Views: 2477

Re: XRoar API ?!?

Hm. Seems to be interesting. I will take a look, thanks!
by jedie
Thu Jul 24, 2014 8:43 pm
Forum: Dragon General
Topic: disassembled Dragon 32 ROM ?
Replies: 48
Views: 23968

Re: disassembled Dragon 32 ROM ?

How to bring coco3.asm (e.g. from http://sourceforge.net/p/toolshed/code/ci/default/tree/cocoroms/coco3.asm ) which looks like: ... BLOCK7.6 EQU $3E BLOCK7.7 EQU $3F * Extended Color BASIC 2.0 ORG $8000 MAGIC FCC 'EX' * * MOVE EXTENDED BASIC'S COMMAND INTERPRETATION TABLE FROM ROM TO RAM L8002 LDX #...