Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
missing colour 9 - bug or feature lack
#4
meanwhile, i'm using this custom library, complementarily to my print64x32.bas:

Code:
'- library for the lack of colour 9 support on zxbasic-compiler (and also print64x32.bas library)
'- this library will be removed when 'ink 9' and 'paper 9' will be defaultly supported
sub ink9on()
  poke 23697,peek(23697) bor 48
  end sub
sub paper9on()
  poke 23697,peek(23697) bor 192
  end sub
sub ink9off()
  poke 23697,peek(23697) band 207
  end sub
sub paper9off()
  poke 23697,peek(23697) band 63
  end sub
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)