Skip to content

Commit b710f08

Browse files
authored
Merge pull request #688 from boriel/feature/make_nexttool_executable
Feature/make nexttool executable
2 parents 00c1d43 + 073f5f3 commit b710f08

53 files changed

Lines changed: 25 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

examples/printfzx.bas

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
REM PRINTFZX Example
2+
3+
#include <printfzx.bas>
4+
5+
CLS
6+
7+
printFzxSetFontAddr(@font1)
8+
printFzxAt(70, 90)
9+
printFzxStr("Big Bold Font")
10+
11+
printFzxSetFontAddr(@font2)
12+
printFzxAt(90, 90)
13+
printFzxStr("Cobra Font")
14+
PAUSE 0
15+
END : REM important to finish here or CPU will crash on next line
16+
17+
font1:
18+
ASM
19+
INCBIN "fzx_fonts/bigbold.fzx"
20+
END ASM
21+
22+
font2:
23+
ASM
24+
INCBIN "fzx_fonts/cobra.fzx"
25+
END ASM
1.22 KB
Binary file not shown.
1.28 KB
Binary file not shown.
1.33 KB
Binary file not shown.
1.42 KB
Binary file not shown.
1.3 KB
Binary file not shown.
1.18 KB
Binary file not shown.
1.14 KB
Binary file not shown.
1.14 KB
Binary file not shown.
1.47 KB
Binary file not shown.

0 commit comments

Comments
 (0)