]> Joshua Wise's Git repositories - fpgaboy.git/blob - core/insn_halt.v
ARP responder
[fpgaboy.git] / core / insn_halt.v
1 `define INSN_HALT               9'b001110110
2 `define INSN_STOP               9'b000010000
3
4 `ifdef EXECUTE
5         `INSN_HALT,`INSN_STOP: begin
6                 `EXEC_NEWCYCLE
7                 `EXEC_INC_PC
8                 /* XXX Interrupts needed for HALT. */
9         end
10 `endif
11
12 `ifdef WRITEBACK
13         `INSN_HALT,`INSN_STOP: begin
14                 /* Nothing needs happen here. */
15                 /* XXX Interrupts needed for HALT. */
16         end
17 `endif
This page took 0.024142 seconds and 4 git commands to generate.