Search found 402 matches
- Thu Jan 19, 2017 3:40 pm
- Forum: General
- Topic: Stuffs to read before going to bed
- Replies: 113
- Views: 66114
Re: Stuffs to read before going to bed
As Sisyphus says, let's get this ball rolling!
- Sun Nov 27, 2016 11:27 pm
- Forum: PC-Engine
- Topic: [Software] Joyport SPI Master
- Replies: 2
- Views: 3313
Re: [Software] Joyport SPI Master
That leaves us with the good old rx/tx or i2c...
- Tue Apr 26, 2016 12:20 pm
- Forum: PC-Engine
- Topic: [Translation] Guyframe/Gai Flame/Gai Frame/...
- Replies: 4
- Views: 6082
Re: [Translation] Guyframe/Gai Flame/Gai Frame/...
D put his projects on github:
- Mon Apr 25, 2016 12:04 pm
- Forum: PC-Engine
- Topic: [Software] Joyport SPI Master
- Replies: 2
- Views: 3313
Re: [Software] Joyport SPI Master
I forgot the CS line is used to synchronize packets/byte between master and slave.
A direct implementation is impossible as there are only 2 output PINs on the joyport.
Crap...
A direct implementation is impossible as there are only 2 output PINs on the joyport.
Crap...
- Sun Apr 24, 2016 8:15 pm
- Forum: PC-Engine
- Topic: [Software] Joyport SPI Master
- Replies: 2
- Views: 3313
[Software] Joyport SPI Master
I'm putting this here as I don't if I'll ever find time to implement it. SPI is a rather simple bus. It only uses 4 pins, SCK, MISO, MOSI, CS. Long story short, joyport SEL and CLR can be used for SCK and MISO, any of the D0-D3 lines can be used for MOSI, and CS can be directly wired to GND. The cod...
- Tue Apr 19, 2016 6:22 pm
- Forum: General
- Topic: Forum issues / Bug report
- Replies: 44
- Views: 41577
Re: Forum issues / Bug report
Update done!
- Mon Apr 18, 2016 11:42 am
- Forum: PC-Engine
- Topic: [Hardware] Pachinko controller
- Replies: 6
- Views: 4655
[Hardware] Pachinko controller
Here are some images of the pachinko controller guts. Although it was sold by Coconuts Japan, the PCB seems to have been designed by Hori. http://blockos.org/releases/pcengine/hardware/Pachinko/thumb/pachinko_back_00.jpg http://blockos.org/releases/pcengine/hardware/Pachinko/thumb/pachinko_back_01.j...
- Mon Apr 18, 2016 9:09 am
- Forum: General
- Topic: Forum issues / Bug report
- Replies: 44
- Views: 41577
Re: Forum issues / Bug report
phpBB 3.1.9 is out... Expect an update this week (whoever might be reading this... I'm talking to you Google bot!)
- Sat Apr 16, 2016 8:51 am
- Forum: PC-Engine
- Topic: [Hardware] Analog joypad
- Replies: 5
- Views: 6146
Re: [Hardware] Analog joypad
Here are the scans of the manual:
- Mon Mar 21, 2016 1:33 pm
- Forum: PC-Engine
- Topic: [Hardware] Analog joypad
- Replies: 5
- Views: 6146
Re: [Hardware] Analog joypad
It seems that the code after l_f6cd is about moving hgfedcba into 0000bagh . Bits a and b being Select and Start. Anyway the 19 lines of codes that computes this can be reduced to : lda $2a30 asl A ; A=gfedcba0 carry=h rol A ; A=fedcba0h carry=g bcc l0 ; if(carry != 0) A |= 0x$02 ora #$02 l0: ; A=fe...