
INSTRUCTION SET REFERENCE
6-56
6.2.32
halt
Mnemonic:
halt
Halt CPU
Format:
halt
src1
reg/lit
Description:
Causes the processor to enter HALT mode, which is described in. Entry into
Halt mode allows the interrupt enable state to be conditionally changed based
on the value of src1.
The processor exits Halt mode on a hardware reset or upon receipt of an
interrupt that should be delivered based on the current process priority. After
executing the interrupt that forced the processor out of Halt mode, execution
resumes at the instruction immediately after the
halt
instruction. The
processor must be in supervisor mode to use this instruction.
Action:
implicit_syncf;
if (PC.em != supervisor)
generate_fault(TYPE.MISMATCH);
switch(src1) {
case 0:
# Disable interrupts. set ICON.gie.
global_interrupt_enable = true;
break;
case 1:
# Enable interrupts. clear ICON.gie.
global_interrupt_enable = false;
break;
case 2:
# Use the current interrupt enable state.
break;
default:
generate_fault(OPERATION.INVALID_OPERAND);
break;
}
ensure_bus_is_quiescient;
enter_HALT_mode;
Table 6.14. Condition Changes
src1
Operation
0
Disable interrupts and halt
1
Enable interrupts and halt
2
Use current interrupt enable
state and halt
Summary of Contents for i960 Jx
Page 1: ...Release Date December 1997 Order Number 272483 002 i960 Jx Microprocessor Developer s Manual ...
Page 24: ......
Page 25: ...1 INTRODUCTION ...
Page 26: ......
Page 35: ...2 DATA TYPES AND MEMORY ADDRESSING MODES ...
Page 36: ......
Page 46: ......
Page 47: ...3 PROGRAMMING ENVIRONMENT ...
Page 48: ......
Page 73: ...4 CACHE AND ON CHIP DATA RAM ...
Page 74: ......
Page 85: ...5 INSTRUCTION SET OVERVIEW ...
Page 86: ......
Page 111: ...6 INSTRUCTION SET REFERENCE ...
Page 112: ......
Page 233: ...7 PROCEDURE CALLS ...
Page 234: ......
Page 256: ......
Page 257: ...8 FAULTS ...
Page 258: ......
Page 291: ...9 TRACING AND DEBUGGING ...
Page 292: ......
Page 309: ...10 TIMERS ...
Page 310: ......
Page 324: ......
Page 325: ...11 INTERRUPTS ...
Page 326: ......
Page 369: ...12 INITIALIZATION AND SYSTEM REQUIREMENTS ...
Page 370: ......
Page 412: ......
Page 413: ...13 MEMORY CONFIGURATION ...
Page 414: ......
Page 429: ...14 EXTERNAL BUS ...
Page 430: ......
Page 468: ......
Page 469: ...15 TEST FEATURES ...
Page 470: ......
Page 493: ...A CONSIDERATIONS FOR WRITING PORTABLE CODE ...
Page 494: ......
Page 502: ......
Page 503: ...B OPCODES AND EXECUTION TIMES ...
Page 504: ......
Page 515: ...C MACHINE LEVEL INSTRUCTION FORMATS ...
Page 516: ......
Page 523: ...D REGISTER AND DATA STRUCTURES ...
Page 524: ......
Page 550: ......
Page 551: ...GLOSSARY ...
Page 552: ......
Page 561: ...INDEX ...
Page 562: ......
Page 578: ......