0
How to make calculator in assembly language
Want to make an assembly calculator for school project. Any tutorial that you would recomend for me?
5 Respostas
+ 3
Google has a few tuts and GitHub project examples:
https://www.google.com/search?q=calculator+in+assembly+language
+ 3
Here is a pretty great and informative lecture uploaded by MIT to get a grasp on how assembly works: https://youtu.be/L1ung0wil9Y?feature=shared
Once you have a basic understanding of assembly then start solving simple problems that are relevant to your cause. Such as adding or subtracting numbers together. There's a lot to read about it on stack overflow as well.
+ 2
The first thing is obviously to learn the syntax. I would then proceed learning how the registers work.
+ 2
learn assembly basic and you will be able to make a calculator in assembly
+ 1
Thank you for these resources.