Programming languages Flashcards
(34 cards)
HTML tag
<html> </html>
head tag
<head> </head>
title tag
<title> </title>
body tag
<body> </body>
headings tag
<h1> </h1>
to <h6> </h6>
paragraph tag
<p> </p>
italic tag
<i> </i>
bold tag
<b> </b>
centre align tag
<center> </center>
hyperlink tag
<a> </a>
no spaces with =
mailto tag
<a> </a>
unordered list tag
<ul> </ul>
list item tag
<li> </li>
blockquote tag
<blockquote> </blockquote>
horizontal rule tag
<hr></hr>
- no closing tag
image tag
<img></img> </img>
Input assembly language
Does what
INP
Inputs a value and stores it in the accumulator
output assembly language
Does what
OUT
Displays (outputs) contents of the accumulator
Store assembly language
Does what
STA
transfers a number from the accumulator to RAM
load assembly language
Does what
LDA
transfers a number from RAM to the accumulator
add assembly language
Does what
ADD
adds the contents of a RAM address to the contents of the accumulator
subtract assembly language
Does what
SUB
subtracts the contents of a RAM address from the contents of the accumulator
brach assembly language
Does what
BRA
Jump PC’s contents to the RAM location (line) specified - used for loops
end/stop/halt assembly language
Does what
HLT
stops the processor