tunozemichanの日記 / tunozemichan's diary

SORD社のコンピューターM68やM68MXの解析についての備忘録です。This blog is a memorandum about the analysis of SORD's computers M68 and M68MX.

2021-03-01から1ヶ月間の記事一覧

SORD M243EXを入手しました。

SORD M243EXを入手しました。M243EXは、Z80マシンで、複数のシリアルポートを持っていて、これにターミナルをぶら下げて使う方法をSORDは提案していました。と言ってもターミナル自体も結構高いんですが。 早速バラして調べました。 まずは画面出力です。調…

PC-8801FHのRGBピンアウト

ググればすぐ出てきますが、いちいち調べるのも面倒なので記載する。 1 --- +12V 2 --- GND 3 -- COLOR CLOCK 4 --- H-sync 5 --- V-sync 6 --- RED 7 --- GREEN 8 --- BLUE

I got a NEC PC-8801FH

NEC's PC-8801 series is the gold standard of Japanese hobby PCs. PC-8801FH was released in 1986. The MODEL 30 that I got was 168,000 yen. The first step was to replace the electrolytic capacitor and the rechargeable battery. I was lucky th…

PC-8801FHのMH化(RAMの増設)

ネットで調べると、FHはDRAMを追加で実装して、R104をショートするとMHになり、RAMが増えるとのこと。早速やってみました。基板のシルクにあるERAMはおそらくextend ramの意味だと思われます。さらにシルクにはNECのuPD41464を使用するよう書かれていますが…

NEC PC-8801FHを入手しました。

NECのPC-8801FHを入手しました。結構汚れていたので分解して清掃します。 分解清掃中 心配していた電池の漏れもなさそうです。もちろん交換します。使われていたのはYUASAのNi-Cd充電池で、2.4V、30mAhのものでしたが、同じものはないので代替品をAmazonで…

Analysis of SORD M343SX-III keyboard (final part)

Analysis complete at last!When I input a key from the M343SX keyboard, it was output to the terminal screen! At the same time, the fact that this was possible meant that the key code was an ASCII code. [Analysis results] The protocol is as…

SORD M343SX-IIIキーボード解析(6:ほぼ最終回)

ついに解析できました! Terminalでキーボードと接続し、キー入力を読み取ることができました。同時に、これができるということはキーのコードはアスキーコードであることも判明しました。 キー入力したものがターミナル画面に出ています。 プロトコルは以下…

Analysis of SORD M343SX-III keyboard (part5)

In the end, I decided to remove the ROM inside the keyboard and read out the binary file. The ROM used in this keyboard, TMM2464AP, is compatible with 27C64, so I was able to read it out with an inexpensive ROM writer TL866CS. I was able t…

Analysis of SORD M68 keyboard (part2)

After much struggle, I was able to remove the PLL sub-board. As you commented, it was tightly soldered. PLL sub-board After removing the PLL sub-board and analyzing the circuit, I was able to obtain the following wiring diagram. However, i…

SORD M343SX-IIIキーボード解析(5)

結局、キーボード内部のROMを取り外し、バイナリファイルを吸い出すことにした。TMM2464APは、27C64とコンパチなので私が使っているTL866CSで読み出すことができた。 逆アセンブラとして、DASMxを使ってアセンブラコードを得ることができた。 まず、注目すべ…

SORD M68 keyboard 解析 その2

やっとPLLサブ基板を取り外せました。コメントを頂いた通り、ガッチリはんだづけされてました。 取り外したPLL基板。なぜか抵抗が焼損しているように見える。 これで解析が進み、以下のような結線図を得られた。しかし、本当にロジックICだけでできているよ…

Analysis of SORD M68 keyboard (part1)

I finally started to analyze the SORD M68 keyboard. It has been a struggle since my first attempt. Compared to the M68MX, there are so many general-purpose logic ICs and almost no dedicated ICs. In particular, apparently, all the circuits …

Analysis of SORD M343SX-III keyboard (part4)

Hoping that the keyboard would work, I did some research and found out that the last unknown pin was -12V. Since it is the RS232C protocol, it naturally requires -12V. So, all the pin-outs were clear and ready to communicate with the keybo…