Jump to content
Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Screen refresh rate

From CPCWiki - THE Amstrad CPC encyclopedia!

It is possible to set different screen refresh rates by changing some CRTC registers. With the following lines of code you can change the refresh rate to 50Hz, 60Hz or 75Hz.

50 Hz

ld bc,&bc04
out (c),c
ld bc,&bd26
out (c),c 
ld bc,&bc05 
out (c),c 
ld bc,&bd00 
out (c),c 
ld bc,&bc07 
out (c),c 
ld bc,&bd1e 
out (c),c 

60 Hz

ld bc,&bc04 
out (c),c 
ld bc,&bd1f 
out (c),c 
ld bc,&bc05 
out (c),c 
ld bc,&bd06 
out (c),c 
ld bc,&bc07 
out (c),c 
ld bc,&bd1b 
out (c),c 

75 Hz

ld bc,&bc04 
out (c),c 
ld bc,&bd1b 
out (c),c 
ld bc,&bc05 
out (c),c 
ld bc,&bd02 
out (c),c 
ld bc,&bc07 
out (c),c 
ld bc,&bd19 
out (c),c