Search found 7 matches
- Mon Apr 24, 2023 4:56 pm
- Forum: Graphics Apps
- Topic: Stereogram "HI" + STAR
- Replies: 8
- Views: 7592
Re: Stereogram "HI" + STAR
That's cool! How did you do create the anaglyph? Did you change the BASIC program, or use some other tool on a PC?
- Sun Apr 23, 2023 11:33 pm
- Forum: Programming
- Topic: Prog8 language and compiler topic
- Replies: 384
- Views: 763994
Re: Prog8 language and compiler topic
A little disappointing that array sizes are so limited.
Compiling program stereo.p8
ERROR file:///Users/mpf/Downloads/stereo.p8:37:9: float array length must be 1-51
ERROR file:///Users/mpf/Downloads/stereo.p8:56:24: byte array length must be 1-256
Compiling program stereo.p8
ERROR file:///Users/mpf/Downloads/stereo.p8:37:9: float array length must be 1-51
ERROR file:///Users/mpf/Downloads/stereo.p8:56:24: byte array length must be 1-256
- Sun Apr 23, 2023 4:27 pm
- Forum: Programming
- Topic: Prog8 language and compiler topic
- Replies: 384
- Views: 763994
Re: Prog8 language and compiler topic
Ah, needed to find R42. The git repository I was looking at only had up to R41. Found R42 and all is well. Thanks!
- Sun Apr 23, 2023 6:07 am
- Forum: Programming
- Topic: Prog8 language and compiler topic
- Replies: 384
- Views: 763994
Re: Prog8 language and compiler topic
Tried compiling and running rasterbars.p8 on both R39 and R41 versions of the x16emu. The compile/assembly goes OK, but the emulator hangs on either version of the emulator. General question: Prog8 works with which versions of the emulator? Comment in prog8 source suggests address for floating point...
- Sat Apr 22, 2023 3:25 pm
- Forum: Graphics Apps
- Topic: Stereogram "HI" + STAR
- Replies: 8
- Views: 7592
Re: Stereogram "HI" + STAR
Agree, it's not fast, takes about 20 seconds for 12 lines, so about 240/12*20 seconds = 400 seconds or about 7 minutes to complete a render. But hey, it's an 8-bit machine running BASIC, certainly would have been worth the wait in the 1980s. If you are using emulator you can use the -warp option whe...
- Sat Apr 22, 2023 4:55 am
- Forum: Graphics Apps
- Topic: Stereogram "HI" + STAR
- Replies: 8
- Views: 7592
Stereogram X16 logo
100 REM *** X16 LOGO 200 REM *** 210 REM *** CODE ADAPTED FROM 220 REM *** PDF PAPER YOU CAN GOOGLE 94-HWT-SI-IHW-SIRDS 230 REM *** 240 SCREEN128 250 CLS 260 E = 2.5 270 MU = 1/3 280 DPI = 60 290 ES = E * DPI 300 PD = 20 310 C = 128 320 H=240 330 W=240 340 DIM D(W),S(W),P(W) 350 SY = H/PD 360 SX = ...
- Fri Apr 21, 2023 11:03 pm
- Forum: Graphics Apps
- Topic: Stereogram "HI" + STAR
- Replies: 8
- Views: 7592
Stereogram "HI" + STAR
100 REM ****** "HI" + STAR 200 REM *** 210 REM *** CODE ADAPTED FROM 220 REM *** PDF PAPER YOU CAN GOOGLE 94-HWT-SI-IHW-SIRDS 230 REM *** 240 SCREEN128 250 CLS 260 E = 2.5 270 MU = 1/3 280 DPI = 60 290 ES = E * DPI 300 PD = 20 310 C = 128 320 H=240 330 W=240 340 DIM D(W),S(W),P(W) 350 SY ...