Hi to all,
Anyone can help me I'm using Pascal to make some routines that i'll use in a game..
Weel reading nice doc's in MAP (http://map.tni.nl/articles/vdp_commands_speed.php) I see that when we disable Sprite in Screen 5 the VDP give us more speed... well the routine to disable screen is:
Sprites_Off: ld a,(VDP+8)
or %00000010
ld (VDP+8),a
di
out (#99),a
ld a,8+128
ei
out (#99),a
ret
but in Pascal 3.x we can't use the directive ASM to put a ASM code .. the unic form to put a ASM code is the inline method ..
Hre's my problme :) I don't know ASM and can't translate the ASM to inline or another method in Pascal to do this!! :)
To get more speed we an disable some lines in screen 5 only working with 192 lines in the page have the code too but ...
If can anyone here can give a little help :) ?