Log In  

Cart #47025 | 2017-12-04 | Code ▽ | Embed ▽ | No License
76

Intro

What if there was a fantasy console in a fantasy console? That's a question that I never got. Instead, I was curious to see if I could come up with a way to get some form of programming on Pico-8.

Well, here you go. The language resembles CPU instructions. The fantasy console allows up to 256 instructions in ROM and has 256 byte RAM which can be viewed at runtime.

The console itself comes with a 16x16 1-bit display and 6 buttons. All IO can be directly accessed and manipulated through RAM. For convenience, it's marked with green (display) and yellow (input) in the editor.

Also, I came up with this idea due to the Ludum Dare theme "The more you have, the worse it is". I actually did it during Ludum Dare and finished it in time. I guess it's an unofficial Ludum Dare entry :-)

Usage

Navigating the editor can be done using the D-pad (arrow keys). Most interactions are done using X.
The available interactions can be seen at the bottom of the editor.

For the sake of space I decided to use binary to display numbers. This might require a bit of getting used to but most values can be found in decimal at the bottom of the screen when interacting with a number.

Writing Code

Pressing X on an empty line will display all the available instructions.
After choosing one the editor might prompt for additional parameters.
Parameters always come with a value represented as an 8-bit number.
A prompt will appear to set the value of the parameter.

To remove a line of code hold the O button and press X.

To move a line of code hold the O button and move it up or down using the D-pad.

Once you're ready to try out your program navigate to the console in the bottom right using the D-pad.
The play button will start to blink. Pressing X will now start the program.
The play button will start blinking again once the program reaches the end.
To terminate the program (for example to get out of an infinite loop) press X and O at the same time.

Saving the program can be done by pressing left twice when in the rom section.
Please note that there's a limit to the size of the program which is smaller then 256 instructions. each instructions takes between 3 and 5 byte to save and a maximum of 256 bytes are saved.

Instructions

Set (address value)
Sets value at address to value.

Add (address, value)
Adds value to the value at address.

Subtract
Subtracts value to the value at address.

Jump (rom address)
Jumps the program count to rom address.

Jump if zero (rom address, value)
Jumps the program count to rom address if value equals zero.

Jump if not zero (rom address, value)
Jumps the program count to rom address if value equals zero (higher than zero).

Or (ram address, value)
Bitwise or value to the value at address.

And (ram address, value)
Bitwise and value to the value at address.

Not (ram address, value)
Bitwise not for value and stores value at address.

Bit shift left (ram address, value)
Shift bits to left at address value times.

Bit shift right (ram address, value)
Shift bits to right at address value times.

Call (rom address)
Jumps the program count to rom address and adds the current rom address to the program stack.

Return
Jumps the program count the the last rom address that was added to the program stack.

End

Well, I hope that you folks can have a bit of fun with it. Let me know if you were patient enough to make anything!
Also, feel free to make suggestions. There's plenty of space left for more instructions if needed.


Version 0.11a
Cart #47024 | 2017-12-04 | Code ▽ | Embed ▽ | No License
76

Version 0.10

Cart #47015 | 2017-12-04 | Code ▽ | Embed ▽ | No License
76

Version 0.9:

Cart #46974 | 2017-12-04 | Code ▽ | Embed ▽ | No License
76

P#46975 2017-12-03 20:31 ( Edited 2018-11-19 05:02)

That's a slick interface and a great idea. It seems like fun to mess around with.

P#47001 2017-12-04 01:29 ( Edited 2017-12-04 06:29)
2

Now to create a fantasy console within your fantasy console within a fantasy console.

It will have one instruction, MADD, and the output will be a single 7-segment LED digit.

The, uh, games won't be much fun. Snake will end quite quickly.

Or, I could play Opus Magnum for eight hours straight.

Decisions, decisions...

P#47008 2017-12-04 05:52 ( Edited 2017-12-04 10:52)

Thanks a lot!

Yeah I'm not sure if that would be feasible :-P Would be cool though!

P#47010 2017-12-04 06:12 ( Edited 2017-12-04 11:12)

Any info about the memory mapping?

P#47017 2017-12-04 08:22 ( Edited 2017-12-04 13:22)

@moechofe The screen is mapped from 0 to 31 (bx00011111) and each bit represents a pixel on the screen. Starting at the top left going from left to right all the way to the bottom.

The input is located at 32 (bx00100000). The first bit (right most) is d-pad left, the second bit is d-pad right and so on (The order is the same as Pico-8). The last two bits are not used.

The rest of the memory is all yours. The call stack is stored in a separate "memory bank" and not accessible.

I've just added some bitwise operations which are pretty much a necessity to be able to do anything. In a bit, I'll add bit shifting as well.

Currently in the process of trying to create a set pixel function and seeing what I need on the way. I would like to have a pixel walking around on the screen as the default program.

P#47022 2017-12-04 08:57 ( Edited 2017-12-04 14:00)

Micro-8 now comes with a default program.

The default program allows you to plot a line using the d-pad.

Line 2 to 13 can be used as a function to draw a pixel on the screen. The function takes a single parameter by setting the value at ram address 240. This value is the position the pixel will be drawn at.

E.g.

[=][240][8]
[call][2]

I've also fixed several errors and added bit shifting. There was also a bug in the display which has now been resolved.

P#47026 2017-12-04 10:04 ( Edited 2017-12-04 15:04)

Thanks for this great game.
I will use it more frequently in the future to get closer to assembler.
My question is how high the fantasy CPU is clocked to find out how to implement a delay function to create animations.

I wonder why so few people are interested in your program

P#50623 2018-03-20 13:09 ( Edited 2018-03-20 17:09)

My only beef is that it's all on one screen. I'd rather have 3 swappable screens each with more clarity than all of it onscreen at once.

Also I should say I've been meaning to do something similar to this for a while now, who knows if i'll get around to it though.

P#50701 2018-03-22 10:52 ( Edited 2018-03-22 14:53)

That's really cool! I thought of this but didn't want to put in the time so it's really cool to see the idea realised.
One thing though... Micro > pico. So the name doesn't really make sense ;P

P#50731 2018-03-23 08:44 ( Edited 2018-03-23 12:44)

It's nice you actually made it a bit more user friendly!
On my case I should had done a hex editor, output screen and that's it! ... then force the developer to assemble opcodes with a pen and paper like the very old times of computers and punch cards!
But of course all of that shouldn't be fun at all to write programs ;)

I'll recommend to get some inspiration from Chip-8 and actually have a blitter instruction, that will lift a huge weight from developer's shoulders and seriously speed things up, the very limited user program won't be busy writing graphics, the system will!

A XOR blitter alone will be fine but if SET/CLEAR are included then will be much better! Additionally it can have a fixed ROM GFX with some generic graphics (like Famicom BASIC) that the user could blit without wasting precious ROM space.

Lastly, 256 bytes of RAM is fine but 256 bytes of ROM is very small... specially when each instruction is sooo loooong... while this limitation is mainly due to the savegame space the instructions set could seriously be improved! Take a few notes from how old 8-bits CPUs like the 6502 work.

Also agreed with Davbo, it should be called "femto", "atto" or "zepto" ;)

P#50928 2018-03-28 13:56 ( Edited 2018-03-28 17:56)

Oh ... this really is a technical cart. Question. Is there a way to make a bouncing ball like in Atari 2600 BASIC ?

http://www.atariage.com/manual_html_page.html?SoftwareLabelID=15

Remember it only has room for 64-commands, (64-bytes if you will) so your program may be more advanced than this.

P#54781 2018-08-06 22:41 ( Edited 2018-08-07 02:41)

Here's what I came up with:

This program increases or decreases a binary number displayed on the top of the screen.

P#59156 2018-11-18 22:03 ( Edited 2018-11-19 03:03)

Also, here's an assembly version of the default ROM:

NOP
JMP 0x0F
MOV r241,r240
SHR r241,3
MOV r242,r241
SHL r242,3
MOV r243,r240
SUB r243,r241
MOV r244,128
SHR r244,r243
MOV r245,p241
OR  r245,r244
MOV p241,r245
RET
NOP
MOV r240,136
NOP
MOV r48,r32
AND r48,2
JIF 0x15,r48
ADD r240,1
MOV r48,r32
AND r48,1
JIF 0x19,r48
SUB r240,1
MOV r48,r32
AND r48,4
JIF 0x1D,48
SUB r240,16
MOV r48,r32
AND r48,8
JIF 0x21,r48
ADD r240,16
CAL 0x02
JMP 0x11
P#59159 2018-11-19 00:02 ( Edited 2018-11-19 05:02)

Awesome to still see that I'm getting comments on this project!

@dw817 yep that should totally be possible, as long as you have the time to do it. You just need an X and Y value, a value that tells wether or not the X and Y should go up or down, and a draw pixel function. If the X or Y value is equal to the edge of the screen, you NOT the direction value.
Shouldn't be too difficult.

@JustBurner Thanks! Maybe someday I'll find the time to make a Gameboy inspired fantasy console, would be cool to base something around the architecture of that and it would make it a bit easier to interact with as well.

P#62239 2019-02-25 11:25

I kinda want to try to write a compiler for this... lol! This is awesome.

P#62716 2019-03-10 02:12

The console looks over-decorated for its simplicity. Perhaps you could remove all the details, and the speaker could beep every time it changes a value on the screen (it checks if the old value is equal to the new value, and if not, it beeps a square wave)
Also: this would be because it looks like there are extra buttons, and that would make buyers think it is more advanced that it really is.

P#63200 2019-04-02 21:16 ( Edited 2019-04-02 21:24)

What is the data format of the instructions in the 255-byte ROM file?

P#68709 2019-10-10 07:25

I know I reviewed this earlier without really getting a good view of it. Darnit. I was going to do something like this myself now that I see the full picture. Ah well, I've got quite a bit on my plate at the moment. Maybe later ...

P#68722 2019-10-10 16:24 ( Edited 2019-10-10 16:32)
1

I literally have no idea how to use this XD

P#83464 2020-10-29 18:54
1

Look like someone made your design come to life :

P#118875 2022-10-10 08:17 ( Edited 2022-10-10 08:21)

this is cool, and i want to try to make snake. only thing is, it seems i need to comment out file 7 ln 4 ROM.LOAD(0x5e00) in order to get it to load carts. (also if you want infinite ROM space, pico-8 can access the clipboard)

P#122878 2022-12-23 03:45 ( Edited 2022-12-23 03:46)

This is really neat. I don't really understand it, but it's neat.

P#122879 2022-12-23 04:00

@ooooggll, if you like this you might be interested in the simpler to understand BrainF. There is a marvelous version of this HERE:

https://www.lexaloffle.com/bbs/?tid=3688

P#122885 2022-12-23 07:17

I was just 'splorin the BBS and came across this! This looks neat! 😊
The stuff you can do in Pico-8 continues to amaze me!
In the editor it says 'x to edit' but the buttons not working to edit, is this a known issue? You said it was for a game jam so I'm assuming you're no longer maintaining it 😆
Still just wanted to say it's cool! Gonna try to write SOMETHING for it, or maybe I'll make a cart in Pico-8 first 😆
Definitely favorited tho!

P#133828 2023-09-01 16:10

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-19 06:59:46 | 0.055s | Q:64