Assemblers - Nand2Tetris
"Avengers... Assemble". Or more like "Symbols... Assemble"

Building intuitive and engaging (customer, developer, user, visual) experiences is my Ikigai.
Search for a command to run...
"Avengers... Assemble". Or more like "Symbols... Assemble"

Building intuitive and engaging (customer, developer, user, visual) experiences is my Ikigai.
No comments yet. Be the first to comment.
In this series, I will publish my notes, understandings and learnings from the Nand2Tetris course available on Coursera. I will also include additional real world tidbits throughout my posts.
Extra Bits from the internet.
sagatu telugodi aavedana
![Scalability, Reliability and Maintainability [Tenglish]](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1759079554176%2F86761c98-abd6-4c0a-a763-cb7578149542.png&w=3840&q=75)
Gotta learn the art of references from my prof now

Take some time. 'a' is definitely not the answer.

OCD Intensifies

import { curves } from "bezier-curves";

Some of the quotes and information are part of the Nand2Tetris course available on Coursera.
Assemblers are simple. They turn symbolic code (assembly) into machine code (binary). We can also write everything in machine code but it's much easier for us to make a computer do it. But, it is also hard to write an assembler in machine code.
So what do we do? We use a different computer to write an assembler in a high-level language like C++, Java or Python and use it to translate our assembly code to binary code.
The assembly code is not the same for every machine as platforms might change and it's the same case with Machine code as well. As the CPU changes, the type of operations it can perform will also change.
Cross Compilation is the process of compiling a piece of code on a computer where the output is compiled to be run on a different platform than the one we are compiling on.
A perfect example of cross-compilation would be mobile apps. Desktop PCs are built on the x86_64 platform whereas mobiles are built on the ARM platform but we compile mobile apps on Desktop and run them on mobile devices.
If you want to try out the assembler that I built for the course, you can find it here.