Search found 656 matches

by jedie
Mon Jun 30, 2014 12:20 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93893

Re: Dragon emulator written in Python ???

Now, it works more:

Code: Select all

6809 EXTENDED BASIC
(C) 1982 BY MICROSOFT

OK
10 A=0
20 B=0
30 PRINT A
40 ? B
50 PRINT "H E L L O "+"WORLD!"
60 PRINT "X"+STR$(A)
RUN
 0 
 0 
H E L L O WORLD!
X 0
OK
A other number than 0 results in a loop...
by jedie
Mon Jun 30, 2014 12:19 pm
Forum: Dragon General
Topic: CLS >8 -> Microsoft copyright why?
Replies: 1
Views: 1274

Re: CLS >8 -> Microsoft copyright why?

Seems that's the easter egg. Found this: http://www.pagetable.com/?p=43
by jedie
Mon Jun 30, 2014 11:15 am
Forum: Dragon General
Topic: CLS >8 -> Microsoft copyright why?
Replies: 1
Views: 1274

CLS >8 -> Microsoft copyright why?

If you run CLS with a higher number than 8, you will see the Microsoft copyright line. Why?

A Easter egg or a error?
by jedie
Mon Jun 30, 2014 10:50 am
Forum: Hints and Tips
Topic: What does this dragon mod do?
Replies: 2
Views: 3698

Re: What does this dragon mod do?

Yes you are right. I connected the dragon and test it. It switched to greyscale and it's clearer.

I didn't not see any significant difference between 32 and 64 screen output.
by jedie
Mon Jun 30, 2014 9:05 am
Forum: Hints and Tips
Topic: What does this dragon mod do?
Replies: 2
Views: 3698

What does this dragon mod do?

I have a Dragon 64 here, buyed on ebay... Now i see there is a mod.

There is a condenser connected parallel to the "quartz crystal" XL2. See picture on the right side.

What does it do? Change the frequency pulse?
by jedie
Sat Jun 28, 2014 11:10 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93893

Re: Dragon emulator written in Python ???

And after another bugfixes, a first "HELLO WORLD" works! :D

Code: Select all

6809 EXTENDED BASIC
(C) 1982 BY MICROSOFT

OK
PRINT "HELLO WORLD!"
HELLO WORLD!
Works with Multicomp6809 and Simple6809 ROM (think the most code of the ROM are the same ;) )

other code results in a loop...
by jedie
Sat Jun 28, 2014 7:14 pm
Forum: Dragon General
Topic: XRoar 0.32 released
Replies: 29
Views: 14654

Re: XRoar 0.32 released

@sixxie: IMHO you should add information about linux binaries on the Windows/MacOS download list. I found the information in a old post: There is a debian testing package for amd64 - apt source here: deb http://www.6809.org.uk/debian testing main deb-src http://www.6809.org.uk/debian testing main bt...
by jedie
Fri Jun 27, 2014 5:57 pm
Forum: Dragon General
Topic: List of good working TFT for PAL/NTSC?
Replies: 7
Views: 7153

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

btw. maybe it would be better to look for a TFT TV and not TFT-Monitors with composite?
by jedie
Fri Jun 27, 2014 5:52 pm
Forum: Hints and Tips
Topic: BASIC: byte value to bits...
Replies: 15
Views: 11653

Re: BASIC: byte value to bits...

@zephyr: That's too much machine code for me :oops:

I improved the look, by using lowcase / inverted letters. Looks like this:
Image


Source code is here: https://github.com/jedie/PyDragon32/blo ... C_NEGA.bas

It's a CC test with NEGA
by jedie
Fri Jun 27, 2014 5:45 pm
Forum: Dragon General
Topic: Dragon emulator written in Python ???
Replies: 106
Views: 93893

Re: Dragon emulator written in Python ???

The last bugfixes results in a different output:

Code: Select all

6809 EXTENDED BASIC
(C) 1982 BY MICROSOFT

OK
PRINT "HELLO"

OK
PRINT 123

OK
10 PRINT 123
LIST
OK
RUN
OK
FOR I=1 to 3:PRINT I:NEXT I
?SN ERROR
OK
PRINT "NOTHING WORKS :("

OK
But, yes no BASIC code seems to work, yet :(