A86: _getkey


[Prev][Next][Index][Thread]

A86: _getkey




can anyone send me the key commands for the _getkey routine(or the _geycode
rountine)  I am writing the menu commands for chips86 but asm studio keeps
coming up with errors with my keys.  I am using the following code:
menugetkey:
	call	_getcode
	cp		K_EXIT
	jr		z,Exit
	cp		K_ALPHA
	jr		z,game
	cp		K_MORE
	jr		z,levels
	cp		K_DEL
	jr		z,newgame
	cp		K_XVAR
	jr		z,highscores
	jr		menugetkey

if these are wrong can someone send me the right ones?

Thanks,
BlAsTo1414