From 7b71343a3e719c0de44e2c56ada22b9998dac8fc Mon Sep 17 00:00:00 2001 From: Joone Hur Date: Thu, 28 Mar 2024 01:35:15 -0700 Subject: [PATCH] Update content --- .../index.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/content/posts/4. how did people write code in the early days of computing/index.md b/content/posts/4. how did people write code in the early days of computing/index.md index 22998251..a05c860a 100644 --- a/content/posts/4. how did people write code in the early days of computing/index.md +++ b/content/posts/4. how did people write code in the early days of computing/index.md @@ -30,9 +30,7 @@ What does mnemonic, TOS, mean? It means that it loads the value of the accumulat As you can see, machine code is just binary code so it’s difficult for humans to easily understand and remember it. Therefore, assembly language is used to represent each low-level instruction or opcode with mnemonics. When assembly language is converted into machine code, we call it assembling -![](images/image3.png) - -    Assembly language               == Assembling == >       machine code +![](images/image3.png "Assembly language = Assembling => Machine Code") In the early days, assembling was done by hand, so the term, hand assembling, was used. Assembly language has been around since the 1950s. The early programmers must know how to use assembly language because there was no high-level language at the time.