Lucid Apogee 3 in 1 multi cartridges for NES / Famicom compatible systems

Started by lucidapogee, March 04, 2025, 12:38:49 pm

Previous topic - Next topic

lucidapogee

Presenting the Lucid Apogee 3 in 1 educational personal computing cartridge series.

Cartridge 1 offers a math game, a puzzle game, and an action game.

Monkey Math ... IQ Puzzle ... Stalactites
https://www.lucidapogee.com/3-in-1/cart1/


Cartridge 2 offers a spelling game, a puzzle game, and an action game.

Animal Trivia ... HEX Puzzle ... Garden Snake
https://www.lucidapogee.com/3-in-1/cart2/


Cartridge 3 offers a 16 bit integer tiny BASIC, an integer RPN calculator, and a calendar.

65FC BASIC ... RPN Calculator ... Calendar
https://www.lucidapogee.com/3-in-1/65fc-os/



These software products are considered freeware, but we will be accepting donations and producing cartridges to sell in limited quantities. We already have one prototype of cartridge 1 and it works on real famiclone hardware!

These products are primarily intended to be part of the famiclone market as opposed to the Nintendo market as we are not affiliated with them in any way. We will be ordering Famiclones branded with our company to sell with our carts.

The idea is to make new, simple, and inexpensive 8 bit educational personal computer systems. The included BASIC interpreter doesn't require a physical keyboard. It displays the keyboard on screen only requiring a controller. The interpreter is severely limited compared to G BASIC or F BASIC, but it only uses the 2k RAM and is 100% homebrew.

Regardless of any limitations, here's a few examples of what it can do:

guess the number
1 N=RND MOD 100+1
2 PRINT "GUESS THE NUM"
3 PRINT "BETWEEN 1-100"
4 INPUT G
5 T=T+1
6 IF G<N 9
7 IF G>N 11
8 IF G=N 13
9 PRINT "TOO LOW"
10 GOTO 4
11 PRINT "TOO HIGH"
12 GOTO 4
13 CLS
14 PRINT "CORRECT IN"
15 PRINT T
16 PRINT "TIRES"


binary to decimal
1 N=1110
2 R=N MOD 10
3 S=S+R*2^I
4 N=N/10
5 I=I+1
6 IF N>0 2
7 PRINT S


decimal to binary
1 N=12
2 I=1
3 R=N MOD 2
4 N=N/2
5 S=S+R*I
6 I=I*10
7 IF N>0 3
8 PRINT S


prime numbers
1 PRINT 2
2 N=2
3 N=N+1
4 A=2
5 IF N MOD A=0 9
6 A=A+1
7 IF A<N 5
8 PRINT N
9 IF N<50 3
10 PRINT "DONE"


factors of an integer
1 N=22
2 I=I+1
3 IF N<>I*(N/I) 5
4 PRINT I
5 IF I<N/2 2
6 PRINT N

fcgamer

Please let me know when these become available, I am interested in purchasing a set of cartridges as well as the machine you are selling. :)
Family Bits - Check Progress Below!

https://famicomfamilybits.wordpress.com

lucidapogee

To see interest is encouraging.

Where the project stands at the moment:

I have one test cart in my possession and need to order two more test carts.
Last night, I ordered a small batch of Famiclones with cartridge ports.

Things are coming together. I am currently looking into more "mass" production. The challenge now is to get the prices as low as possible.

Right now the carts are produced for $18 each approximately (shipping included). Hopefully I can get that down.

I was able to source the consoles for about $11.30 a piece in low quantity (that includes shipping, tax, and fees).

I am assuming that my consoles will be between $15 and the carts $25. Or something like that. Unfortunately that sounds very high to me so I need to find someone willing to make these in bulk at a lower price.

One thing that would help is if I can have some famiclones made with the games built in like with those 400 in 1s. Imagine a BASIC handheld for $10.

Hopefully I will have some good news in a month or so. These things take forever to ship from China. In the meantime, hopefully I will catch any errors and make some cool additions to the ROMs before they are committed to physical copies.

lucidapogee

More progress! I have ordered five of these to start with.

You cannot see attachments on this board.

When they arrive, I will test them with my cartridges to make sure they fit and function correctly. If they work out, these will be the first consoles I will have for sale. Not custom, but at least there will be another source to buy cool famiclones.

Also, last night I ordered samples for Lucid Apogee Multi Game Cart #2 and for 65FC-OS. When the cartridge samples arrive and are tested, I will order more of them.


Finally, I have contacted a factory about the production of custom 400-in-1 handhelds. I have ordered some samples of them with all 9 of my programs (games, BASIC, etc) included with the existing 400 games. These particular games are not the unlicensed pirate variety. They will be your standard Chinese titles made for famiclones by Nice Code, etc. Unfortunately, the minimum order after the sample (if it actually arrives) will be 1000. I do not have anywhere near that kind of funding right now, but if the samples work out I will save up.


There's some new examples too! Including two new example "games."

TREASURE HUNT
1 PRINT "TREASURE IS"
2 PRINT "HIDDEN IN A"
3 PRINT "10X10 GRID"
4 PRINT "(0-9) 10 TRIES"
5 T=5
6 A=RND MOD 10
7 B=RND MOD 10
8 PRINT "X="
9 INPUT X
10 PRINT "Y="
11 INPUT Y
12 IF X=A AND Y=B 27
13 IF Y=B THEN 18
14 IF Y<B THEN 17
15 PRINT "NORTH"
16 GOTO 18
17 PRINT "SOUTH"
18 IF X=A 23
19 IF X<A 22
20 PRINT "WEST"
21 GOTO 23
22 PRINT "EAST"
23 T=T-1
24 IF T>0 8
25 PRINT "YOU LOST"
26 END
27 PRINT "FOUND IT"

FIGHT
1 H=10
2 N=10
3 PRINT "PLAYER -"
4 PRINT H
5 PRINT "NPC -"
6 PRINT N
7 PRINT "(A)HIT (B)HEAL"
8 K=KEY
9 IF K=6 12
10 IF K=5 15
11 GOTO 8
12 H=H+RND MOD 3
13 N=N+RND MOD 2
14 GOTO 3
15 D=RND MOD 2
16 N=N-D
17 PRINT D
18 PRINT "DAMAGE DEALT"
19 D=RND MOD 2
20 H=H-D
21 PRINT D
22 PRINT "DAMAGE TAKEN"
23 IF H AND N 3
24 IF H<1 27
25 PRINT "YOU WIN"
26 END
27 PRINT "YOU LOSE"