I forgot to commit for a while and I haven't done much, but got the very basics of the game pong working.

Signed-off-by: deadvey <deadvey@deadvey.com>
This commit is contained in:
2025-10-16 13:56:17 +01:00
parent 4d71868ac6
commit 07932e2ce0
10 changed files with 202 additions and 199 deletions

View File

@@ -60,7 +60,6 @@ Sides dw 2
; ------------------------------------------------------------------
; FEATURES -- Code to pull into the kernel
%INCLUDE "features/screen.asm"
%INCLUDE "features/cli.asm"
%INCLUDE "features/power.asm"
@@ -68,7 +67,10 @@ Sides dw 2
%INCLUDE "features/graphics.asm"
%INCLUDE "features/sound.asm"
; GAMES
; FUNCTIONS -- Other stuff that is useful
%INCLUDE "functios/math.asm"
; GAMES -- Games that I wrote for it
%INCLUDE "games/pong.asm"
; ==================================================================