All Projects → nanochess → Invaders

nanochess / Invaders

Invaders game in 512 bytes (boot sector)

Programming Languages

assembly
5116 projects

Projects that are alternatives of or similar to Invaders

Asm Space Invaders
A small, bootable game written in x86 Assembly inspired by Space Invaders
Stars: ✭ 202 (-56.18%)
Mutual labels:  game, x86, bootloader, asm
Pillman
Pillman boot sector game, a yellow thing eats pills and is chased by monsters.
Stars: ✭ 298 (-35.36%)
Mutual labels:  game, x86, bootloader, asm
Toledo Atomchess
Toledo Atomchess is the world's smallest chess program in x86 assembly code
Stars: ✭ 69 (-85.03%)
Mutual labels:  game, x86, bootloader, asm
Bootmine
Bootable minesweeper game in a 512-byte boot sector
Stars: ✭ 136 (-70.5%)
Mutual labels:  game, x86, bootloader
asmdot
[Unstable] Fast, zero-copy and lightweight (Arm | Mips | x86) assembler in (C | C++ | C# | Go | Haskell | Javascript | Nim | OCaml | Python | Rust).
Stars: ✭ 23 (-95.01%)
Mutual labels:  asm, x86
CopyToAsm-Plugin-x86
CopyToAsm (x86) - A Plugin For x64dbg
Stars: ✭ 23 (-95.01%)
Mutual labels:  asm, x86
mbr-boot-manager
💾 Master Boot Record with a boot menu written in Assembly
Stars: ✭ 57 (-87.64%)
Mutual labels:  x86, bootloader
TravorOS
A simple OS running on Intel x86 architecture | No longer updating
Stars: ✭ 24 (-94.79%)
Mutual labels:  x86, bootloader
kasm
Assembler library for Kotlin
Stars: ✭ 40 (-91.32%)
Mutual labels:  asm, x86
BootProg
FAT12/16/32 Bootsector for .COMs/.EXEs
Stars: ✭ 74 (-83.95%)
Mutual labels:  x86, bootloader
LanOS
one mini operating system simplified from linux0.12
Stars: ✭ 61 (-86.77%)
Mutual labels:  asm, x86
dcc
Direct/Interactive C Compiler
Stars: ✭ 18 (-96.1%)
Mutual labels:  asm, x86
APIInfo-Plugin-x86
APIInfo Plugin (x86) - A Plugin For x64dbg
Stars: ✭ 42 (-90.89%)
Mutual labels:  asm, x86
creating-controls-in-assembler
Gitbook: https://mrfearless.gitbooks.io/creating-controls-in-assembler
Stars: ✭ 20 (-95.66%)
Mutual labels:  asm, x86
FutureDOS
A futuristic DOS
Stars: ✭ 46 (-90.02%)
Mutual labels:  asm, x86
stoomboot
An x86 real mode multiboot-ish ELF bootloader
Stars: ✭ 19 (-95.88%)
Mutual labels:  x86, bootloader
SLAE
Example ASM code following SLAE course and exam assignments.
Stars: ✭ 36 (-92.19%)
Mutual labels:  asm, x86
Radical-OS
Radical kernel source tree
Stars: ✭ 45 (-90.24%)
Mutual labels:  asm, x86
Limine
x86/x86_64 BIOS Bootloader
Stars: ✭ 288 (-37.53%)
Mutual labels:  x86, bootloader
APISearch-Plugin-x86
APISearch Plugin (x86) - A Plugin For x64dbg
Stars: ✭ 46 (-90.02%)
Mutual labels:  asm, x86

| |\ | \ / /\ | \ | |] [ | | | / | | |/ |_ | \ ___]


Invaders game in 512 bytes (boot sector or COM file)
by Oscar Toledo G. Jun/04/2019

http://nanochess.org
https://github.com/nanochess

This a game recreating the Invaders game in 512 bytes, that can be
run as a COM file or put into a boot sector of a floppy disk to be
run.

Move with Ctrl key to left, Alt key to right, any Shift key to
shoot. (maybe you'll need to disable StickyKeys in Windows)

The previous commit worked with left arrow, right arrow and space
key, but you had to press the space key to stop the spaceship.
Also didn't have the barriers.

Now it's compatible with 8088 (the original IBM PC) but still it
has the option for 80286 code in the source code. So you now have
to look for a 8-bit compatible VGA card if you want to run it over
original hardware ;)

A small video of the game running over emulation:

  https://www.youtube.com/watch?v=pC976eejfms

If you want to assemble it, you must download the Netwide Assembler
(nasm) from www.nasm.us

Use this command line:

  nasm -f bin invaders.asm -Dcom_file=1 -o invaders.com
  nasm -f bin invaders.asm -Dcom_file=0 -o invaders.img

Tested with VirtualBox for Mac OS X running Windows XP running this
game, it also works with DosBox and probably with qemu:

  qemu-system-x86_64 -fda invaders.img

Enjoy it!


>> THE BOOK <<        

Do you would like more details on the inner workings? This program
is fully commented in my new book Programming Boot Sector Games
and you'll also find a 8086/8088 crash course!

Now available from Lulu:

  Soft-cover
    http://www.lulu.com/shop/oscar-toledo-gutierrez/programming-boot-sector-games/paperback/product-24188564.html

  Hard-cover
    http://www.lulu.com/shop/oscar-toledo-gutierrez/programming-boot-sector-games/hardcover/product-24188530.html

  eBook
    https://nanochess.org/store.html

These are some of the example programs documented profusely
in the book:

  * Guess the number.
  * Tic-Tac-Toe game.
  * Text graphics.
  * Mandelbrot set.
  * F-Bird game.
  * Invaders game.
  * Pillman game.
  * Toledo Atomchess.
  * bootBASIC language.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].