Skip to content

Prettify readme #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
![img](https://raw.githubusercontent.com/flouthoc/calc.asm/master/art/calc.gif)

<hr>
This a simple arithmetic calculator written in x86 assembly with minimalistic operation support like `Addition` , `Subtraction` , `Multiplication` and `Division`.I have tried to kept <strong>source highly documented</strong> by commenting on each line so that beginners can easily understand the source.If you feel that these comments source or anything can be improved create a <strong>pull-request</strong> now. If you found it useful <strong> Star it </strong> or <strong>follow me on github </strong>

This is a simple arithmetic calculator written in x86 assembly with minimalistic operation support like `Addition` , `Subtraction` , `Multiplication` and `Division`. I have tried to kept <strong>source highly documented</strong> by commenting on each line so that beginners can easily understand the source.If you feel that these comments source or anything can be improved create a <strong>pull-request</strong> now. If you found it useful <strong> Star it </strong> or <strong>follow me on github </strong>


<h4>Usage</h4>

`./calc <operator> <operand1> <operand2>`


<h4>Operations Supported</h4>

`"+"` For Addition <br>
`"-"` For Subtraction <br>
`"*"` For Multiplication <br>
`"/"` For Division <br>


<h4>Compiling</h4>

```bash
nasm -f elf64 -o calc.o calc.asm
ld -d calc calc.o
Expand All @@ -31,7 +35,7 @@ make
<h4>Blogs which helped me</h4>
http://0xax.blogspot.in/search/label/asm

<h1> Fork it</h1>
<h2> Fork it</h2>
Twitter @flouthoc<br>
Email [email protected]

Loading