Flag register of 8086

Flag register of 8086 Flag register of 8086 is a 16-bit register where status of the latest Arithmetic operation performed. As it has 16-bits , it has 16 flags. These 16 flags are classified as 7 are don’t care flags. 3 are control flags ( accessible to programmers ). 6 are status flags ( not …

Flag register of 8086 Read More »

Updating and Deleting the Data

Updating and Deleting the Data Introduction In this tutorial, we shall look into the updating and deleting of the data in the tables. These commands are primarily necessary to apply the changes to the data in the rows of tables using SQL. UPDATE Command The update command is generally used to modify the data in …

Updating and Deleting the Data Read More »

Short circuit protection using Transistor

Short Circuit Protection using Transistor A short circuit is an electrical circuit that allows ideally infinite and practically very high amounts of current to travel along an unintended path with almost zero resistance and zero voltage. Short circuit protection using a transistor is a circuit that solves the short circuit problem. Ideally, an infinite amount of …

Short circuit protection using Transistor Read More »

Architecture of 8086

Architecture of 8086 This tutorial expalins the deep working os architecture of 8086 microprocessor diagram and step wise working architecture of 8086 microprocessor with block diagram. Architecture of 8086 microprocessor is divided into two units BIU and EU because of pipelining ( refer pipelining tutorial ). Bus Interface Unit – BIU This stands for bus …

Architecture of 8086 Read More »

OpenCV Image Basics

OpenCV Image Basics Introduction From the previous tutorial, we can get to know, how the images are stored in the NumPy. Now, in this tutorial we shall get to know about the OpenCV image basics, how OpenCV stores the images and some operations on the image using the openCV image processing techniques. About OpenCV OpenCV …

OpenCV Image Basics Read More »

Open CV with ROS

Open CV with ROS Introduction In the robotic world, the sight of the robot is also possible with the help of the OpenCV. This package of OpenCV integrating with the ROS to provide the vision to the robots in the ROS simulation. To install the OpenCV on to your system run the following command To …

Open CV with ROS Read More »

Stack

Stack Introduction The stack is a data structure that works on the Last In First Out (LIFO) principle. They will have the top variable that always keeps track of the top element. Operations Push/Insert: To insert an element Pop/Delete: To delete an element The operations like push and pop that are performed on the stack …

Stack Read More »

logical instructions of 8051

Logical instructions of 8051 As there were 24 arithmetic instruction sets,and there are 25 logical instructions in 8051. AND , OR, XOR , NOT …. These instructions come under logical instructions. ANL A, #14H : This is AND instruction performed between the data of register A, and the 14H.  A ← A *14H ,  the …

logical instructions of 8051 Read More »

memory segmentation in 8086

Memory segmentation in 8086 How does files, folders store data in present computers. Data in one file doesn’t overlap with another file, even though they both are in one memory , is all because of memory segmentation in 8086. Memory of 8086 has 4 segments Data segment Program/code segment Stack segment ( read more about …

memory segmentation in 8086 Read More »

Insert and Select Command

Insert and Select Command In the previous tutorial, we have come across creating tables and deleting them. Now, in this tutorial, let us look into the insertion of data into the tables, in the form of rows and about the most used SELECT command in the SQL queries. Insert and select commands INSERT Command  Insert …

Insert and Select Command Read More »