Memory weaved by hand – THe LVDC

The Launch Vehicle Digital Computer a.k.a LVDC is one of the critical components of the Saturn V launch. LVDC is the computer that provided the autopilot for Saturn V from launch to Earth Orbit Insertion. LVDC is designed and manufactured by IBM’s Electronics System Center. It is considered as one of the technologically advanced memory […]

Read More Memory weaved by hand – THe LVDC

FUN WITH POINTERS

Pointers!A confusing yet curious topic. What is a POINTER?Well, it’s a variable that stores the address of another variable. We often get confused by the dual operation performed by the pointer.‘&‘ Operator is an address operator that gives the address of a particular variable.‘*‘ Operator is an indirection operator, that refers to the value pointed […]

Read More FUN WITH POINTERS

Sliding over 𝐑𝐒-πŸπŸ‘πŸ

It is used for the Serial interface. Other devices can be controlled through the terminal for text interface through RS 232. It was introduced in 1960 and since its introduction, it was known as 𝐑𝐒-πŸπŸ‘πŸ but it is now officially called π“πˆπ€-πŸπŸ‘πŸ. The TIA-232 describes mostly the πŸπŸ“-𝐩𝐒𝐧  connector, the πŸ—-𝐩𝐒𝐧 connector description is also […]

Read More Sliding over 𝐑𝐒-πŸπŸ‘πŸ

Peeking Into The Assembly

Assembly is tough. How does the processing of c code takes place in assembly? What are the kinds of instructions that we could see? What is actually happening in this gigantic mesh of lines? This is my small step to look into the assembly code of a small program/ replicating a small segment of code […]

Read More Peeking Into The Assembly

THREADS

Let’s talk about Threads What is a Thread? – A Thread is a path of execution within a process. A thread is also known as a lightweight process. The idea is to achieve parallelism by dividing a process into multiple threads. -A thread is an active entity as it executes as a part of a […]

Read More THREADS

THE SIMPLICITY OF STACK

Stack, the most frequently used data structure. Stack, as the name suggests, keeps on stacking up the data one above the other. Consider an example of stacking up books in a box. The implementation of stack in your program is similar to that. Stack is often referred to as Last In First Out (LIFO). Why?Β  […]

Read More THE SIMPLICITY OF STACK