diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-05-11 23:00:53 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-05-11 23:00:53 +0100 |
commit | 6fafe08b7dc884960582d272d35650d1c9dfdf87 (patch) | |
tree | 330b1b958428c9e01463543490d31bc6c9cb471a /game/main.asm | |
parent | 681ba9adf948ebdc909b08979c76251053af7a9e (diff) | |
download | tr8vm-6fafe08b7dc884960582d272d35650d1c9dfdf87.tar.gz tr8vm-6fafe08b7dc884960582d272d35650d1c9dfdf87.zip |
Add some randomness
Diffstat (limited to 'game/main.asm')
-rw-r--r-- | game/main.asm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/game/main.asm b/game/main.asm index e779a95..cdf0844 100644 --- a/game/main.asm +++ b/game/main.asm @@ -52,6 +52,7 @@ fill_loop: int_handler: iret +.include "random.asm" .include "starfield.asm" .include "entities.asm" .include "player.asm" |