Search found 656 matches

by jedie
Tue Sep 17, 2013 8:57 am
Forum: Hints and Tips
Topic: DIY simple 6809 ???
Replies: 7
Views: 12705

Re: DIY simple 6809 ???

Rink wrote:If you wanted to try making a PCB yourself then Fritzing is a good tool and is a lot easier to use than Eagle etc.
You mean http://fritzing.org/ ?

Looks interesting: http://www.youtube.com/watch?v=Hxhd4HKrWpg
by jedie
Tue Sep 17, 2013 8:51 am
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93792

Re: Dragon emulator written in Python ???

With https://github.com/jedie/DragonPy/commi ... e246b934a7 i hope to fixed the indexed addressing modes.
I have now looked into "Programming the 6809" and here: http://www.maddes.net/m6809pm/sections.htm#sec2_2_5_1
by jedie
Tue Sep 17, 2013 7:28 am
Forum: Hints and Tips
Topic: DIY simple 6809 ???
Replies: 7
Views: 12705

Re: DIY simple 6809 ???

Other 6809 homebrew project: http://www.msarnoff.org/projects/6809/
by jedie
Mon Sep 16, 2013 10:41 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93792

Re: Dragon emulator written in Python ???

Opcode 0x26 seems to exist Implemented with https://github.com/jedie/DragonPy/commit/60b1728ac91794919a97589babcb8672c14cc846#L0R902 I started to adoped the complete branch_cond() stuff from: https://github.com/jedie/XRoar/blob/master/hd6309.c#L546-L570 but it seems that there is some mismatched wi...
by jedie
Mon Sep 16, 2013 9:33 pm
Forum: Dragon General
Topic: XRoar sourcecode mirror on github...
Replies: 0
Views: 1310

XRoar sourcecode mirror on github...

I have made a sourcecode mirror in github here: https://github.com/jedie/XRoar/

I have made this only for easier linking code parts and nice browsing.
by jedie
Mon Sep 16, 2013 9:24 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93792

Re: Dragon emulator written in Python ???

From a quick look at your cpu6809.py it seems that you have only implemented a few opcodes. How do you think it can work if you don't fill them in? Yes, i implement the lastes "unknown" opcode... step-by-step... Maybe later i can merge some of the code... The CPU looks at the reset vector at $fffe ...
by jedie
Mon Sep 16, 2013 4:58 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93792

Re: Dragon emulator written in Python ???

I implement more ops and the Indexed addressing modes: https://github.com/jedie/DragonPy/blob/fbbaeaee14ce2c3dd1754710bab9b80386c68e01/cpu6809.py#L672 think there must be exist a few bugs :( Current output: init 16384 Bytes ROM (0x8000 - 0xc000) Read 16383Bytes from d32.rom into ROM 0x8000-0xbfff in...
by jedie
Sun Sep 15, 2013 10:35 pm
Forum: Hints and Tips
Topic: Emulate Floppy with a Raspberry Pi ?
Replies: 22
Views: 17651

Re: Emulate Floppy with a Raspberry Pi ?

The floppy drive is emulated, not the controller. Yes, but this is also a nice way: Use a controller clone (like the one from lafumat) and emulate the floppy with Raspberry Pi to share the files directly into the local LAN ;) OK, emulate floppy controler + floppy drive would be nicer... And maybe t...
by jedie
Sun Sep 15, 2013 8:48 pm
Forum: Dragon General
Topic: disassembled Dragon 32 ROM ?
Replies: 48
Views: 23940

Re: disassembled Dragon 32 ROM ?

Have now done this: ./6809dasm.pl org=0x8000 forceorg=0x8000 end=0xbfff d32.rom >d32.rom.asm Then i add comments into d32.rom.asm by a Python script ( https://gist.github.com/jedie/6573808 ) and use the information from http://archive.worldofdragon.org/phpBB3/viewtopic.php?f=8&t=4365 result is here:...