Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 560 Bytes

File metadata and controls

19 lines (16 loc) · 560 Bytes

AssemblyOS - is Operating system that have ability to execute your assembly commands

Requirements:

  • nasm
  • make
  • qemu-system-x86_64

Installation:

  • Enter project directory and run make

Guide:

  • How create your assembly command:
    1. Open 'example.asm' file.
    2. Define name of the command.
    3. Create your OS command using available x64 instructions in NASM assembler and paged output to print characters.
  • How to execute your command:
    1. Boot up OS.
    2. Enter your command name in terminal.
    3. Press enter to execute it.