' hellop2.bas ' P2 hello world program in BASIC const _clkmode = 0x010c3f04 const _clkfreq = 160_000_000 clkset(_clkmode, _clkfreq) _setbaud(2000000) do print "hello from P2!" loop