prog8/examples/screencodes.p8

37 lines
913 B
Plaintext
Raw Permalink Normal View History

%import textio
2020-02-07 19:47:38 +00:00
%zeropage basicsafe
; Note: this program can be compiled for multiple target systems.
2020-02-07 19:47:38 +00:00
main {
sub start() {
txt.lowercase()
2020-02-07 19:47:38 +00:00
str s1 = "HELLO hello 1234 @[/]" ; regular strings have default encoding (petscii on c64)
str s2 = sc:"HELLO hello 1234 @[/]" ; alternative encoding (screencodes on c64)
2020-02-07 19:47:38 +00:00
2020-08-27 16:10:22 +00:00
txt.print("\n\n\n\nString output via print:\n")
txt.print("petscii-str: ")
txt.print(s1)
2020-02-07 19:47:38 +00:00
2020-08-27 16:10:22 +00:00
txt.print("\n\nThe top two screen lines are set via screencodes.\n")
2020-02-07 19:47:38 +00:00
ubyte i
for i in 0 to len(s1)-1
txt.setchr(i, 0, s1[i])
for i in 0 to len(s2)-1
txt.setchr(i, 1, s2[i])
const ubyte c1 = 'z'
const ubyte c2 = sc:'z'
2020-08-27 16:10:22 +00:00
txt.print("\npetscii z=")
txt.print_ub(c1)
txt.print("\nscreencode z=")
txt.print_ub(c2)
txt.print("\n")
2020-02-07 19:47:38 +00:00
}
}