MAC: Difference between revisions

From NDWiki
Jump to navigation Jump to search
(Move to new category)
(added Product number section, and information)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''MAC''' is a [[Wikipedia:Macro assembler|Macro assembler]] for computers of the [[NORD-1]], [[NORD-10]], and [[ND-100]] lines from [[Norsk Data]].
'''MAC''' is a [[Wikipedia:Macro assembler|Macro assembler]] for computers of the [[NORD-1]], [[NORD-10]], and [[ND-100]] lines from [[Norsk Data]].
Based on a concept developed at MIT<ref>[[Wikipedia:Massachusetts Institute of Technology]]</ref>, two assemblers ASEM (for the SAM 1 computer<ref>[[Wikipedia:no:SAM (datamaskin)]]</ref>) and SMIL (for the SAM 2 computer) was developed at FFI<ref>[[Wikipedia:no:Forsvarets forskningsinstitutt]]</ref>. With experience from these two assemblers, ND developed MAC for NORD-1 in 1968.<ref>[[ND-NYTT]] No 7, May 1973, article "Software for NORD maskiner".</ref>


==Limitations==
==Limitations==
Line 22: Line 24:


== See also ==
== See also ==
* [[DMAC (command)]]
* [[MACM]]
* [[NORD PL]]
* [[NORD PL]]
* [[PLANC]]
* [[PLANC]]
* [[ND-100 instruction set|ND-100 series instruction set]]
* [[ND-1xx_Instructions#Instruction_Set|ND-100 series instruction set]]
 
== Product number ==
MAC is part of [[:Category:ND-210400|ND-210400]] Subsystem package II.


==Sources==
== Sources ==
*{{OriginWP-EN|Norsk_Data_Assembler|8 December 2008}}  
*{{OriginWP-EN|Norsk_Data_Assembler|8 December 2008}}  
*{{ND-doc|60.096.01}} printed March 1978


[[Category:Norsk Data software]]
[[Category:Norsk Data software]]
[[Category:Programming Languages]]

Latest revision as of 14:20, 21 March 2018

MAC is a Macro assembler for computers of the NORD-1, NORD-10, and ND-100 lines from Norsk Data.

Based on a concept developed at MIT[1], two assemblers ASEM (for the SAM 1 computer[2]) and SMIL (for the SAM 2 computer) was developed at FFI[3]. With experience from these two assemblers, ND developed MAC for NORD-1 in 1968.[4]

Limitations

The assembler had several snags which today would be considered exotic or strange.

Identifier length

Like many assemblers MAC placed a limit on the length of variable names, however, rather than simply disallowing names greater than the maximum length it only kept the last five letters of an identifier, ignoring the first part of the name. The reason for keeping the last 5 was so that variables such as MY_ARRAY1 and MY_ARRAY2 would be distinguishable. The result was that the internal storage of some names was very strange and some times hard to understand as the names would be identical to names such as RRAY1 and RRAY2 respectively. This behavior caused some programmers to adopt the practice of writing only the last five letters of a name in their program code as the assembler would ignore the rest anyway. Because of the difficulty faced by a human reader in understanding what was meant by the name, the code became much more difficult to understand. This resulted in less code reuse on the system.

Translation to machine code

Another peculiarity was that the assembler worked by adding together the "values" of all the symbols in an instruction to form the actual machine code. For example to copy the contents of the X register to the A register you would write:

COPY SX DA

Internally the assembler had a numerical value for "COPY", another value for "SX", and a third value for "DA". Adding them together yielded the actual machine instruction. However, if the programmer made a mistake and typed in (notice that both registers are "source" registers):

COPY SX SA

the machine would not do what was really intended by the programmer, nor would it throw an error. Instead the assembler would accept the program but it would not be translated into a COPY instruction. The SX + SA part would most likely result in either the value of some third register or would overflow so that the operation part of the instruction was modified changing it from copy to some other unintended operation.

Standard call library

Another issue for assembler programmers in general is the list of so-called monitor calls (MON). The MON instruction is equivalent to the INT instruction found in Intel CPUs. However, while they originally had a nice set of functions to write to a file, read from a file, etc; it quickly devolved into an ad-hoc set of functions. An example being a function originally designed to output 8 bytes stored in 4 of the registers (A, D, T and X). Soon someone, having the bytes in some other registers, made a new function to output from those registers. This left the programmer with a veritable forest of output functions all doing almost the same thing. In the latter days of SINTRAN III the problem then was to find available codes for these system calls as all 256 of them had already been taken by several such near identical functions. Thus, the extended multi-function monitor calls entered the scene where one monitor call could do a number of functions with a function code specified in a register designating which of its subroutines would be executed.

See also

Product number

MAC is part of ND-210400 Subsystem package II.

Sources