vocelia/guessgame.asm
1
0
Fork
You've already forked guessgame.asm
0
A "guess the number" CLI game targeted for Linux x86-64 (without glibc) written in NASM assembly by a bored hobbyist
  • Assembly 92.2%
  • C 6.6%
  • Shell 1.2%
2025年06月04日 23:09:23 +03:00
src Added main whileloop and fixed inttostr 2025年06月04日 23:09:23 +03:00
compile Added gen_rand label and removing libc 2025年06月02日 22:33:39 +03:00
LICENSE Initial commit 2025年06月01日 21:08:32 +02:00
README.md Added gen_rand label and removing libc 2025年06月02日 22:33:39 +03:00
reference.c Update source code 2025年06月02日 01:48:35 +03:00

guessgame.asm

A "guess the number" CLI game targeted for Linux x86-64 (without libc) written in NASM assembly by a bored hobbyist

The ideal reference is defined in reference.c
The goal of this project is to get as close as possible to the reference
My boss is strict and after long hours of pointless lecturing, I was told to refrain from using libc
Nevermind, I will cheat a little bit and use libc for rand() because I don't want to implement an RNG algorithm myself
Looks like I will not be using libc for rand() afterall since I found Intel's rdrand instruction