Stats

5
Projects
12
Devlogs
101
Votes
3
Ships

Coding Time

All Time: 83h 53m
Today: 3h 36m

Member Since

August 10, 2025

Badges

2
Ballot Stuffer
vote 100 times.
🚢
Maiden Voyage
you shipped your first project! the journey begins...

Projects

5
Minecraft Skybock
3 devlogs 5 days ago
PascalProjects
1 devlog 6 days ago
NodeCraft
0 devlogs 6 days ago
Building a Fully Custom 8-Bit CPU from Scratch
8 devlogs 6 days ago
🚀
0 devlogs 6 days ago

Activity

Just finished a Minecraft library for creating blocks server side. The players dont have to download anything. The plugin only has to be installed on the server. I also made a conveyor block for testing the plugin. If the player or any entity stands on it they get moved in the corresponding direction. The conveyor block is a directional block meaning it can be placed in any direction the player is looking at. It works by placing an invisible block for the hitbox and then spawing a display entity at the location. For the player it looks like a completely new block but in reality its just a display entity.

Update attachment

Even more bugs in the Main decoder. I finally managed to fix all of them and even wrote some tests to make sure no more are in the decoder. I never want to touch this file ever again. There are so many 0s and 1s and if only one of them is off the whole instruction doesnt work. The datapath is mostly done and hopefully doesnt require further changes. I also isolated most of the circuits so they are easier testable. The picture shows the new schematic of the datapath

Update attachment

I found some bugs in the MainDec module. Some bits were misaligned. I also managed to finish the ALU decoder which takes the current operation and tells the computer what arithmetic operation it should perform. The main decoder is similar to that but instead of controlling the ALU (arithmetic logic unit) it moves the data around the cpu. All of the wires parallel to each other are the control lines which will go into the datapath (the part that operates the pc, but needs signals to know what it should do).

Update attachment

Just noticed that there was a massive issue in the design of the jump instructions. They used to only work with positive relative jumps. Now the program can jump in both directions up and down. This was achieved by adding a sign extender. And logical shift left. It multiplies all of the addresses by 2

Update attachment

I optimized the controller to remove all of the unecessary subtractors and multipliers. I also managed to add the branching logic. It just uses the flags from the flag register and decides whether or not to jump. The project is written in verilog which is a programming language made for designing hardware. I luckly dont have to place all of the logic gates manually. The image shows that a lot of hardware was removed and some added.

Update attachment

I have worked on a new and versitile paper library for creating custom items. As a test i made the lava chicken from A Minecraft Movie. The texturepack also got added to the git repository.

Update attachment

Created a custom island system. When players join they get assigned to their own island. Once the player leaves the island is unloaded to save memory. All progress is saved. The current system only supports one island per player but can be expanded to handle multiple.

Update attachment

A Basic controller which will change the inputs of the datapath depending on the current instruction and state of the machine. It sill needs some further work because it has way to much unecessary hardware like a multiplier and a subtractor.

Update attachment
David Polt
David Polt created a project
5d ago

Minecraft Skybock

A custom Minecraft Server Skyblock paper plugin.

Minecraft Skybock
3 devlogs 0 followers Shipped

I created Minesweeper from scratch using the Pascal Programming language. All the pixels of the textures are placed individually and self made. The game also contains some features from the original winmine.exe like flags and auto mine

Update attachment

After some back and forth I finally got the datapath planed out. The datapath is the operation part of the cpu. It contains the ALU which executes arithmetic operations and then writes them back to the registers which are also in the ALU.

Here is a list of the current Instruction set which the datapath is able to perform:
OPCODE MENEMONIC Operands

0000 MOV reg1 reg2 0000

0000 ADD reg1 reg2 0001

0000 SUB reg1 reg2 0001

0000 AND reg1 reg2 0011

0000 OR reg1 reg2 0100

0000 XOR reg1 reg2 0101

0000 LD reg1 0110

0000 ST reg1 0111

0000 PUSH reg1 1000

0000 POP reg1 1001

0000 PUSHF 1010

0000 POPF 1011

0000 LSR reg1 reg2 1100

0000 LSL reg1 reg2 1101

0000 ASR reg1 reg2 1110

0000 CMP reg1 reg2 1111

0001 CMPI reg1 immediate

0010 ADDI reg1 immediate

0011 SUBI reg1 immediate

0100 ANDI reg1 immediate

0101 ORI reg1 immediate

0110 XORI reg1 immediate

0111 MOV reg1 immediate

1000 RJMP address

1001 RET 1101 1101

1010 RCALL address

1011 JE address

1100 JNE address

1101 JB address

1110 JAE address

1111 JVC address

Update attachment

Created a testbench for testing the modules the CPU is made of. Also made some basic building blocks which will make the future design process much easier.

Update attachment
David Polt
David Polt created a project
5d ago

PascalProjects

Some cool little scripts made using the pascal programming language

PascalProjects
1 devlog 0 followers Shipped
David Polt
David Polt created a project
5d ago

NodeCraft

A Minecraft Modding Engine that lets you create custom mods visually using a powerful node-based editor.

NodeCraft
0 devlogs 0 followers

Finished the ALU, which is the brain of a cpu. It performs 16-bit arithmetic and logical operations.

Update attachment
David Polt
David Polt created a project
6d ago

Building a Fully Custom 8-Bit CPU from Scratch

Im currently designing and simulating a real and working cpu from the ground up. The cpu uses a custom made instruction set. Once its finished you could actually run real programs on the physical chip. https://github.com/Rodald/CRP

Building a Fully Custom 8-Bit CPU from Scratch
8 devlogs 3 followers Shipped
David Polt
David Polt created a project
6d ago

LaserLeague

LaserLeague is a minecraft paper mini-game plugin. The game is simple. There a two teams with different colors. Every few seconds laser nodes spawn on the map for you to claim in your team color. If the enemy touches them they die. Once all players of a team died the round is over

0 devlogs 0 followers
David Polt
David Polt joined Summer of Making
6d ago

This was widely regarded as a great move by everyone.