Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

SEUD only has keyboard control. To use interface 2 joystick you have to poke the addresses in your menu. In my games I use interface 2 port 2 which is the same as keys 6,7,8,9,0

Oh then I need to add it... Is it documented at the Facebook group? If not... May I borrow It from you? (Or the pokes I have to do, some guidance would be very appreciated) :)

(3 edits)

Oh I have been checking my code and  I have a Sinclair joystick poke setup in the menu ... I think I took if from the Facebook group indeed. I wonder what will be wrong...

(+1)

Poke 50501-50505  with 27,19,3,11,35  for interface 2 port 2

This is what I have currently in my code for Joystick Sinclair (the numbers are decimal values)  probably it is not correct... I thought it was Sinclair 1... I will use your values , thanks very very much!! 

     ld a,3

     ld (50501),a

     ld a,11

     ld (50502),a

     ld a,4

     ld (50503),a

     ld a,19

     ld (50504),a

     ld a,35

     ld (50505),a

     

Hi again! It worked! but a little detail: I am testing in Fuse for Windows, and it is recognised as "Sinclair 1" (Fuse offers emulation of what it calls "Sinclair 1" and "Sinclair 2") Many thanks for your help. :)