Search found 685 matches

by hlide
Thu Dec 06, 2018 10:05 am
Forum: Hardware
Topic: [MZ-80 K] Serial interface through I/O ports $F8-$FF
Replies: 9
Views: 11021

Re: [MZ-80 K] Serial interface through I/O ports $F8-$FF

dat-alex wrote: Wed Dec 05, 2018 12:34 pm
Beware! $F000-$FFFF are used for ROM like floppy disk drives.
I know this ,but as I am not going to use a FD I think this sould be fine.
it seems you are lucky:

Code: Select all

	IPL.ROM		$0000-$0FFF
	FDIF.ROM	$F000-$F3FF (MZ-80FIO Boot ROM)
by hlide
Wed Dec 05, 2018 1:46 pm
Forum: Hardware
Topic: [MZ-80 K] Serial interface through I/O ports $F8-$FF
Replies: 9
Views: 11021

Re: [MZ-80 K] Serial interface through I/O ports $F8-$FF

RESET: you're lucky! :) I didn't check it and wasn't sure because in numerous schematics or tables about SHARP MZ you can read some signals named without negative marks while they are active negatively. So always double check as you did ;).
by hlide
Wed Dec 05, 2018 11:35 am
Forum: Hardware
Topic: [MZ-SD2CMT] GitHub link
Replies: 55
Views: 64403

Re: [MZ-SD2CMT] GitHub link

tingo wrote: Wed Dec 05, 2018 11:09 am ok, after more testing: Arduino IDE 1.8.7 and 1.8.6 gives error messages. Arduino IDE 1.8.5 or earlier works.
Are those errors just regarding declaration order? Adding some forward declarations should fix them.
by hlide
Wed Dec 05, 2018 10:50 am
Forum: Hardware
Topic: [MZ-80 K] Serial interface through I/O ports $F8-$FF
Replies: 9
Views: 11021

Re: [MZ-80 K] Serial interface through I/O ports $F8-$FF

Revised my last post as I made a big mistake in the way to handle /CSEx. In the end, using /CSE should be enough.
by hlide
Wed Dec 05, 2018 10:11 am
Forum: Hardware
Topic: [MZ-80 K] Serial interface through I/O ports $F8-$FF
Replies: 9
Views: 11021

Re: [MZ-80 K] Serial interface through I/O ports $F8-$FF

Beware! $F000-$FFFF are used for ROM like floppy disk drives. On MZ-80 K, $Ex00-$Ex27 is the I/O memory mapping, so you can get an unused /CSEy signal where its address range is [$Ex00 + y*4, $Ex03 + y*4]. 'x' means whatever the hexadecimal digit in place, you'll get a mirror of $E000-$E027. Since y...
by hlide
Tue Dec 04, 2018 4:14 pm
Forum: Hardware
Topic: [MZ-80 K] Serial interface through I/O ports $F8-$FF
Replies: 9
Views: 11021

Re: [MZ-80 K] Serial interface through I/O ports $F8-$FF

If your DIY project only concerns the MZ-80K, everything below 0xF8 should be safe.

EDIT: I believe MZ-80AIF is for MZ-80 A and MZ-80FIO for MZ-80 K.
by hlide
Tue Dec 04, 2018 4:03 pm
Forum: Hardware
Topic: [MZ-80 K] Serial interface through I/O ports $F8-$FF
Replies: 9
Views: 11021

Re: [MZ-80 K] Serial interface through I/O ports $F8-$FF

from // i/o bus #if defined(SUPPORT_MZ80AIF) io->set_iomap_range_rw(0xd8, 0xdb, fdc); io->set_iomap_range_w(0xdc, 0xdd, mz80aif); #elif defined(SUPPORT_MZ80FIO) io->set_iomap_range_rw(0xf8, 0xfb, mz80fio); #endif io->set_iomap_range_rw(0xfe, 0xff, printer); We can see $F8-$FF are used for floppy dis...
by hlide
Tue Dec 04, 2018 3:51 pm
Forum: Hardware
Topic: [MZ-80 K] Serial interface through I/O ports $F8-$FF
Replies: 9
Views: 11021

Re: [MZ-80 K] Serial interface through I/O ports $F8-$FF

I move this post into its own topic because the one where it was posted was about I/O memory port through /MREQ.

And I think this post can legitimately have its own topic.
by hlide
Tue Dec 04, 2018 3:42 pm
Forum: Hardware
Topic: [MZ-SD2CMT] GitHub link
Replies: 55
Views: 64403

Re: [MZ-SD2CMT] GitHub link

No idea. Arduino IDE is doing something with the .ino file so the order of functions is not an issue unlike in a true C++ file. So I wouldn't expect such an error. By the way, I'm using Visual Studio and an Arduino plugin so I can benefit all the goodies like refactoring and smart c++ checking. I'll...
by hlide
Sat Dec 01, 2018 4:05 pm
Forum: Hardware
Topic: [MZ-800] Different Video output box
Replies: 2
Views: 3675

Re: [MZ-800] Different Video output box

Now the unknown signal through my second MZ-821 (without composite signal): signal-10µs-8MHz.jpg signal-5us-16MHz.jpg signal-1µs-48MHz.jpg Now wonder there is no color: no color-burst. There is also an interrupt "MONITOR <-> TV" but I got the same results. So I guess the only way to get co...