Skip to content

Rezve/8086-Microprocessor-Game-in-Assembly-Language

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

8086-Microprocessor-Game-in-Assembly-Language

This is a game developed with assembly language and tested in emu8086 (v4.08) emulator

All you need to copy the code from game.asm file and run it in emu8086.

Summery

It’s a balloon shooting game where player shoots an arrow to hit the balloon and when the balloon gets hit it beeps and a new balloon pops up and you get to shoot another arrow towards it.

I used few label and conditional jump statement to update logic and display everything.

ALGORITHM:

Main_loop:
  This is where logical part of game, handling user inputs and visually rendering happens.

  Inside_loop:
    Checks collision detection
    Changes direction of player
    Hides arrow when it gets out of viewport
    If there isn’t  any balloon on viewport it fires a new one

  Hit: 
    Plays sound (beep)
  
  Render_loon:
    The balloon moves upwards

  Render_arrow:
    Moves arrow forwards
  
  Insede_loop2:
    Render player on viewport

  Handling user input:
    Check if any key is pressed 
  
  upKey
    set player's direction to up
  
  downKey
    set player's direction to down
  
  spaceKey
    If no arrow on screen fire new one

USED PROCEDURES

 clear_screen: it clear the screen. 
show_score: This procedure used for display score in same position on screen.

##Screenshots ###Start Menu Menu

###Game Screen 1 Game Screen 1

###Game Screen 2 Game Screen 2

###End Menu End Menu

About

This is a game developed with assembly language and tested in emu8086 emulator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published