I haven't been able to fix this problem.
I developed a bootloader using NASM for X86 using this tutorial as reference: http://fisnikhasani.com/building-your-own-bootloader/
Using the command:
nasm -f bin boot.asm -o boot.bin
I was able to run my bootloader called boot.bin on a usb key.
However I also developed a Pacman game using x86 assembly called pacman.asm. I want to be able to boot into the bootloader and play the pacman game.
However I have not idea how to run the pacman.asm file once my usb key with the boot.bin file is connected and booted.
Any help is appreciated.