Search found 137 matches

by unartic
Sat Sep 28, 2024 6:49 am
Forum: Productivity Apps
Topic: X16 File Manager (Norton Commander-clone)
Replies: 5
Views: 5732

Re: X16 File Manager (Norton Commander-clone)

At the one year anniversary of the initial development of X16 File Manager, I've just released the newest version. Version 2.0 has been a major refactoring run. The main goal was to shrink the prg size. Allthough the previous version already fitted in a rombank (16kb), there wasn't much room for new...
by unartic
Thu Aug 29, 2024 4:48 pm
Forum: Demoscene
Topic: Spirograph demo compiled with nxtBasic
Replies: 0
Views: 581

Spirograph demo compiled with nxtBasic

Is there anything more mesmerizing than watching a Spirograph come to life?

Here's a quick program to create your own Spirograph designs, complete with source code.

Try It Now!


nxtBasic docs and download:
https://github.com/unartic/nxtBasic
by unartic
Thu Aug 22, 2024 8:40 am
Forum: Demoscene
Topic: Starfield in nxtBasic
Replies: 0
Views: 665

Starfield in nxtBasic

A quick demo of a kind of flying through a starfield effect in nxtBasic

Try It Now!

nxtBasic docs and download:
https://github.com/unartic/nxtBasic
by unartic
Tue Aug 20, 2024 7:24 am
Forum: Programming
Topic: nxtBasic 0.6b has just been released
Replies: 1
Views: 641

nxtBasic 0.6b has just been released

nxtBasic 0.6b is now released and ready to download. What is nxtBasic? With nxtBasic, you can write familiar BASIC code and compile it into lightning-fast machine code, allowing you to create more sophisticated programs and compelling games. nxtBasic offers an extensive and ever-growing library of ...
by unartic
Tue Aug 20, 2024 7:23 am
Forum: Works In-Progress Discussion
Topic: nxtBasic: A New Compiler for Basic Code on the X16
Replies: 33
Views: 5961

Re: nxtBasic: A New Compiler for Basic Code on the X16

nxtBasic 0.6b is now released and ready to download. Whats new? - Bug fixes Fixed bug in ASC function Fixed bug in left$ Fixed bug with loading basic constants Fixed bug with incorrect compile time errors when two return types are possible Fixed bug when returning a value in a function with using E...
by unartic
Mon Aug 19, 2024 7:37 am
Forum: Programming
Topic: compiler for kickc ? how does it work?
Replies: 4
Views: 1016

Re: compiler for kickc ? how does it work?

If you do:

LIST {ENTER}

after the load, do you see a basic line with a sys command?
by unartic
Sun Aug 18, 2024 9:58 am
Forum: Programming
Topic: compiler for kickc ? how does it work?
Replies: 4
Views: 1016

Re: compiler for kickc ? how does it work?

Well..it does appear to run, though it doesnt do any screen output it seems.
by unartic
Thu Aug 08, 2024 4:51 pm
Forum: Programming
Topic: Coding Jam
Replies: 1
Views: 946

Coding Jam

I came accross this: https://www.youtube.com/watch?v=XbLBkB9NbNk It's a coding 'competition' where you can use any platform or coding environment you prefer. A theme is announced just before the event begins, and you have 9 days to create a game or program that will be 'judged'. This could be a fun ...
by unartic
Thu Aug 08, 2024 4:22 pm
Forum: Games
Topic: Text mode Tetris clone with source code (basic)
Replies: 1
Views: 961

Text mode Tetris clone with source code (basic)

A simple Tetris clone in text mode featuring high scores and basic sound effects.

The source code is included for those who wish to tinker with it. Use nxtBasic to compile it.

https://github.com/unartic/nxtBasic/

Try It Now!
by unartic
Mon Aug 05, 2024 5:44 am
Forum: Programming
Topic: nxtbasic: 64x64 8bit sprite that I can paint.
Replies: 10
Views: 2053

Re: nxtbasic: 64x64 8bit sprite that I can paint.

hello unartic , good day. can you please implement this in nxtbasic? thanks. greetings ----------------------------- void plotLine(int x0, int y0, int x1, int y1) { int dx = abs(x1-x0), sx = x0<x1 ? 1 : -1; int dy = -abs(y1-y0), sy = y0<y1 ? 1 : -1; int err = dx+dy, e2; /* error value e_xy */ for(;...