CALC ColDlDand

AEDIT-86 User's Guide

second occurrence of that character signifies the right end of the string. To prevent ambiguity, the following characters may not serve as string delimiters: letters, digits, blank, and tab.

A natural delimiter choice is a quotation mark. However, if the string constant includes a quotation mark, a different character, one that does not appear in the string, should be used as the delimiter.

The case of the letters within the string is preserved.

7.5 Operators

Syntactically, operators are divided into two groups: unary operators and binary operators. From the functional point of view, the operators are divided into the following groups: logical operators, relational operators, shift/rotate operators, and arithmetic operators. Table 7-1 partially reflects this partition.

Table 7-1 lists all the CALC command operators with a brief description of the semantics of each operator. Following are more detailed descriptions of the nontrivial operators:

1.- and ' (1 's complement) have the same meaning. The duplicate notation prevents possible difficulties on terminals where one of these characters may have a special meaning. 1's complement means for every 0 bit, a 1 bit is returned and vice versa.

2.! and # :

The POS operator (!) is defined as follows: If number > 0 then return true ( -1 ) else return false (0).

The NEG operator (#) is defined as follows: If number > 0 then return false (0)

else return true ( -1 ).

3.\ (modulo division) returns the remainder of an integer division, for example, 7

\4 = 3; 16 \ 4 = O.

4.1\ (XOR) returns true only if one operand is true and the other is false; other- wise it returns false. This is done for each bit in the argument, for example, 51\1 =4.

7.5.1 Shift/Rotate Operators

In the shift/rotate operations, the left operand is handled as a pattern of 32 bits. It is moved to the right or to the left by the number of bits specified by the right operand.

In a shift, bits moved off one end of the pattern are lost, and 0 bits or 1 bits are moved into the pattern from the other end. In a rotate, bits moved off of one end move onto the other end.

SAL and SAR are algebraic shift operators. This means that the high order bit is the sign bit, and there is no shift of bits between the sign and the rest of the number. In a left shift (SAL), 0 bits move into the pattern from the right. In a right shift (SAR), either 0 bits (if pattern is positive) or 1 bits (if pattern is negative) move into the pattern from the left.

In every shift/rotate operation, the right operand (count) is always taken as modulo

256.

7-4

Page 98
Image 98
Intel AEDIT-86 manual Shift/Rotate Operators

AEDIT-86 specifications

The Intel AEDIT-86, also known as the Intel 8086, is a notable microprocessor that played a critical role in shaping the computing landscape. Released in 1978, it was Intel's first 16-bit microprocessor, setting the stage for the x86 architecture that continues to influence modern computing.

One of the main features of the AEDIT-86 is its 16-bit architecture, which allows it to process data in larger chunks compared to its 8-bit predecessors. This capability not only improves performance but also increases the amount of memory that can be addressed, allowing for a maximum of 1 MB of RAM. This was a significant advancement at the time, enabling more complex software and operating systems to run efficiently.

The AEDIT-86 is built on a 3-micron process technology, which was innovative for its time and contributed to its performance capabilities. The microprocessor operates at a clock speed of up to 5 MHz, which allowed it to execute more instructions per second than previous generations of processors. This speed, combined with its wide data bus (16 bits), enables the processor to handle a larger volume of information more quickly.

Intel incorporated several key technologies in the AEDIT-86, including segmentation. This feature divides the memory into different segments, making it easier for programs to access data and improving memory management. The AEDIT-86 also supports a minimum of four 64 KB segments, which enhances the organization and access of programs and data in memory.

Another significant aspect of the AEDIT-86 is its compatibility with the existing 8080 and 8085 instruction sets, which facilitated easier migration for developers and helped the processor gain traction in the market. This backward compatibility allowed existing software to be ported to the new platform with minimal modification.

Furthermore, the Intel AEDIT-86 introduced a powerful instruction set that includes both integer and string manipulation commands, paving the way for more versatile programming. The instruction set architecture (ISA) of the AEDIT-86 supports both high-level programming languages and low-level assembly language, offering flexibility for various applications.

In summary, the Intel AEDIT-86 is a groundbreaking microprocessor known for its 16-bit architecture, advanced segmentation technology, and compatibility with earlier instruction sets. Its introduction marked the beginning of the x86 architecture, which has influenced countless processors and computing systems that followed. The AEDIT-86's features and technologies were instrumental in the evolution of personal computing, laying the groundwork for future innovations in the industry.