To enable mixing DOS with High-Res, you must save and restore the pointer. Statments 25 and 35, in the second program, demonstrate how to maintain the pointer values.
This will not work:
10 D$ = CHR$(4)
20 HPLOT 1,2
30 PRINT D$;"CATALOG"
40 HPLOT TO 33,44
This does work:
10 D$ = CHR$(4)
20 HPLOT 1,2
25 A = PEEK(38): B = PEEK(39)
30 PRINT D$;"CATALOG"
35 POKE 38,A: POKE 39,B
40 HPLOT TO 33,44