Search found 24 matches

by Bill Leue
Fri Jan 26, 2024 9:30 pm
Forum: Programming
Topic: Bug in X16MAZE game
Replies: 7
Views: 3204

Re: Bug in X16MAZE game

It turns out the problem was with the "fake" SNES controllers I bought. Apparently their response time was too slow for the X16 and they looked to the system as if the SELECT key was always held down. So I trashed them and bought some used but tested genuine SNES controllers, and they work...
by Bill Leue
Wed Jan 17, 2024 10:03 pm
Forum: Programming
Topic: Bug in X16MAZE game
Replies: 7
Views: 3204

Bug in X16MAZE game

I am not sure where to post this bug report. There does not appear to be a specific forum topic. Anyway, I see what appears to be a bug in the X16MAZE game that comes on the included SD card. When I run the game with no SNES controllers attached, it works correctly using RETURN for start and Z for n...
by Bill Leue
Wed Jan 17, 2024 9:53 pm
Forum: Programming
Topic: Prog8 language and compiler topic
Replies: 385
Views: 766125

Re: Prog8 language and compiler topic

You can easily simulate recursion with an explicit stack that you write your own Push and Pop methods. I do this all the time in various language environments where I don't have recursion available.
-Bill
by Bill Leue
Mon Jan 15, 2024 5:06 pm
Forum: Programming
Topic: Missing Graphics functions in BASIC
Replies: 2
Views: 17746

Missing Graphics functions in BASIC

According to the current version of the X16 PRG, the Kernal contains these useful graphics calls: GRAPH_set_window GRAPH_set_font GRAPH_get_char_size GRAPH_draw_oval GRAPH_draw_image ...and others. However, the BASIC does not seem to support any of these. (unless maybe the documentation is incomplet...
by Bill Leue
Sat Jan 13, 2024 3:06 pm
Forum: CX16 General Chat
Topic: Serial Number Tracker
Replies: 68
Views: 295717

Re: Serial Number Tracker

Got my Commander X16 today! (Slight snafu because my email address at Texelec somehow got corrupted and so I never received a tracking number email, and so the cardboard box with the X16 in it stood outdoors all night in a soaking rain, but thank goodness, no damage to the items!
-Bill
by Bill Leue
Sat Jan 13, 2024 2:42 pm
Forum: Official Announcements
Topic: The Commander X16 Begins Shipping Next Week!
Replies: 25
Views: 182136

Re: The Commander X16 Begins Shipping Next Week!

My CommanderX16 serial number PR00074 arrived late last night. No tracking number was ever emailed to me. This could have been a catastrophe, because we had heavy rain all last night, and the package arrived after we went to bed, so it stood outside in the rain all night. When I found it on my doors...
by Bill Leue
Tue Jan 09, 2024 1:44 am
Forum: CX16 General Chat
Topic: Pre-Orders are Here
Replies: 27
Views: 245545

Re: Pre-Orders are Here

I got a confusing email today regarding my pre-order. It was from Paypal, and it said my bill had been paid to company called DFW Resale. The dollar amount was the correct amount for my CX16 order, but I have not received any tracking number. Does anyone know who DFW Resale is and what role they hav...
by Bill Leue
Mon Jan 08, 2024 6:38 pm
Forum: Official Announcements
Topic: The Commander X16 Begins Shipping Next Week!
Replies: 25
Views: 182136

Re: The Commander X16 Begins Shipping Next Week!

I got an email from Paypal saying that my bill to DFW Resale has been paid, but have not got my tracking number yet.
The amount is correct, but who the heck is DFW Resale?
-Bill
by Bill Leue
Wed Jan 03, 2024 1:59 pm
Forum: Programming
Topic: Assembler access to floating-point math functions
Replies: 8
Views: 62575

Re: Assembler access to floating-point math functions

Thanks to vermiceli and SolarSurfer! Those posts are very helpful.
-Bill
by Bill Leue
Tue Jan 02, 2024 2:15 pm
Forum: Programming
Topic: Assembler access to floating-point math functions
Replies: 8
Views: 62575

Assembler access to floating-point math functions

If one is coding a program in assembler, is there a standard way to access floating-point math functions? That it, can one initialize a memory location to have a floating-point value, do 4-function math operations, and access library functions such as trig functions, abs(), int(), and so on?
-Bill