Search found 656 matches

by jedie
Sat Oct 19, 2013 10:37 am
Forum: Hints and Tips
Topic: 6809 opcode missmatch...
Replies: 9
Views: 5956

Re: 6809 opcode missmatch...

I started with a new script here: https://github.com/jedie/DragonPy/blob/41c0d99aa5c7b3a619cbba81c6db1f826ed72362/MC6809data/MC6809_data2.py And add a "NEW" sheet here: https://docs.google.com/spreadsheet/ccc?key=0Alhtym6D6yKjdFBtNmF0UVR5OW05S3psaURnUTNtSFE The goal is to have something like this: {...
by jedie
Thu Oct 17, 2013 11:02 pm
Forum: Hints and Tips
Topic: 6809 opcode missmatch...
Replies: 9
Views: 5956

Re: 6809 opcode missmatch...

Now i put the CSV data into a public spreadsheet: https://docs.google.com/spreadsheet/ccc?key=0Alhtym6D6yKjdFBtNmF0UVR5OW05S3psaURnUTNtSFE&usp=sharing The last thing i added was the columns mem_access, mem_read, mem_write : mem_access: byte/word mem_read: Does the op need the memory content? mem_wr...
by jedie
Thu Oct 17, 2013 9:59 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93865

Re: Dragon emulator written in Python ???

Thanks. Have found the error: -postbyte & 0x10 == 1 +postbyte & 0x10 != 0 fixed with: https://github.com/jedie/DragonPy/commit/45bbb3b9533a4543b163142745bd16973c259816 Now i can communicate a little bit with the BASIC interpreter. But there must be exist a few other bugs. Because crashed fast and of...
by jedie
Thu Oct 17, 2013 9:03 pm
Forum: Dragon General
Topic: PSU Pictures
Replies: 31
Views: 16543

Re: PSU Pictures

tormod wrote:I am also trying to get S-video output: If I could replace the whole power board with my own board with S-video connector and the switching supply instead of the DSUB power inlet, RF out and DIN video out it would be neat.
Great idea!
by jedie
Thu Oct 17, 2013 9:00 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93865

Re: Dragon emulator written in Python ???

Thanks for the response.

I have the indexed addressing modes implemented, here: https://github.com/jedie/DragonPy/blob/ ... #L912-L998

But ok, it must have bugs in there...
by jedie
Thu Oct 17, 2013 7:08 pm
Forum: Dragon General
Topic: PSU Pictures
Replies: 31
Views: 16543

Re: PSU Pictures

Just interesting.

btw. i must someday build a alternative power supply. Because i have 2x Dragon 32 and one Tano Dragon, but ony one origin 230V power supply.
by jedie
Thu Oct 17, 2013 5:00 pm
Forum: Hints and Tips
Topic: Dragon 32 system/user stack...
Replies: 6
Views: 4685

Re: Dragon 32 system/user stack...

A other question to the stacks...

What is if PULL more often called than PUSH before?
Just return the values "outside" the stack?
by jedie
Thu Oct 17, 2013 11:18 am
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93865

Re: Dragon emulator written in Python ???

Have some bug fixed and implement some ops: https://github.com/jedie/DragonPy/commit/bb0d5f24a36824eee2a40104c5e09b094543f706 I can send "PRINT 123" and see that the commands table for PRINT accessed. He jumps to de38 : * * DISPATCH TABLE FOR COMMANDS TOKEN # CMD_TAB ... 0085 TOK_IF EQU *-CMD_TAB/2+...
by jedie
Wed Oct 16, 2013 10:21 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93865

Re: Dragon emulator written in Python ???

Have made some updates. But can't get Simple6809 fully working: After a text line endered the CPU reads in a loop into out of memory area...
by jedie
Wed Oct 16, 2013 5:18 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93865

Re: Dragon emulator written in Python ???

It's alive... well, almost.

I created a Tkinter console window for RS232 interface.
Getting text and sending works, basicly.

But sending something will only reply/echo back. Nothing more.

Looks like this: