Unit 1.4 -- Units, general format for panels

 

What is a Unit?

 

Unit == Usually One Working Assembler Program and associated

notes

 

Section == A collection of related units

== like a chapter in a book

 

File vs. Listing

 

A file is the program (or document) that you actually type

into the computer. In your directory, a file has the word

ASSEMBLE after its name.

 

A listing is the assembled version of your file. In a

listing, such things as the "object code" are shown to the

Left of the program you typed in. (Listings are what are

used in these class notes.) In your directory, a listing

has the word LISTING after its name.

 

 

PROG

 

Program Purpose

 

What the program is supposed to do. E.g., it is supposed to

compute the factorial of the number in the variable called

A.

 

PED

 

Pedagogical Purpose

 

What the program is supposed to teach you, e.g., how to

convert an IF statement into Assembler.

 

CONCEPTS

 

A description of any concepts illustrated by the program,

E.g., how to convert an if statement to Assembler.

 

SF

 

Syntax Features

 

Whatever syntax features or machines instructions that were

introduced by the panel.