Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download

  1. #include <stdint.h>
  2. #include <stddef.h>
  3. /* Z80 API
  4.        ______  ______ ______
  5.       /\___  \/\  __ \\  __ \
  6.  ____ \/__/  /\_\  __ \\ \/\ \ ________________________________________________
  7. |        /\_____\\_____\\_____\                                                |
  8. |  Zilog \/_____//_____//_____/ CPU Emulator                                   |
  9. |  Copyright (C) 1999-2024 Manuel Sainz de Baranda y Goñi.                     |
  10. |                                                                              |
  11. |  This emulator is free software: you can redistribute it and/or modify it    |
  12. |  under the terms of the GNU Lesser General Public License as published by    |
  13. |  the Free Software Foundation, either version 3 of the License, or (at your  |
  14. |  option) any later version.                                                  |
  15. |                                                                              |
  16. |  This emulator is distributed in the hope that it will be useful, but        |
  17. |  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY  |
  18. |  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public      |
  19. |  License for more details.                                                   |
  20. |                                                                              |
  21. |  You should have received a copy of the GNU Lesser General Public License    |
  22. |  along with this emulator. If not, see <http://www.gnu.org/licenses/>.       |
  23. |                                                                              |
  24. '=============================================================================*/
  25.  
  26. #ifndef Z80_H
  27.  
  28. /** @file Z80.h
  29.   * @brief Zilog Z80 CPU emulator.
  30.   *
  31.   * @details The Z80 library implements a fast, small and accurate emulator
  32.   * of the Zilog Z80 that emulates all that is known to date about this CPU,
  33.   * including the undocumented behaviors, MEMPTR, Q and the special RESET.
  34.   *
  35.   * @version 0.2
  36.   * @date 2024
  37.   * @author Manuel Sainz de Baranda y Goñi */
  38.  
  39.  
  40. /** @brief Major version number of the Z80 library. */
  41.  
  42. #define Z80_LIBRARY_VERSION_MAJOR 0
  43.  
  44. /** @brief Minor version number of the Z80 library. */
  45.  
  46. #define Z80_LIBRARY_VERSION_MINOR 2
  47.  
  48. /** @brief Micro version number of the Z80 library. */
  49.  
  50. #define Z80_LIBRARY_VERSION_MICRO 0
  51.  
  52. /** @brief String literal with the version number of the Z80 library. */
  53.  
  54. #define Z80_LIBRARY_VERSION_STRING "0.2"
  55.  
  56. /** @brief Maximum number of clock cycles that <tt>@ref z80_run</tt> and
  57.   * <tt>@ref z80_execute</tt> can emulate. */
  58.  
  59. //#define Z80_MAXIMUM_CYCLES (Z_USIZE_MAXIMUM - Z_USIZE(30))
  60. #define Z80_MAXIMUM_CYCLES ((-1ULL) - 30ULL)
  61.  
  62. /** @brief Maximum number of clock cycles that <tt>@ref z80_run</tt> will
  63.   * emulate if instructed to execute 1 clock cycle.
  64.   *
  65.   * This is the number of clock cycles it takes to execute the longest
  66.   * instruction through interrupt mode 0, not counting the M-cycle used to fetch
  67.   * a @c 0xDD or @c 0xFD prefix. For <tt>@ref z80_execute</tt>, subtract 4 clock
  68.   * cycles from this value. */
  69.  
  70. #define Z80_MAXIMUM_CYCLES_PER_STEP 25
  71.  
  72. /** @brief Minimum number of clock cycles that <tt>@ref z80_run</tt> or
  73.   * <tt>@ref z80_execute</tt> will emulate if instructed to execute 1 clock
  74.   * cycle. */
  75.  
  76. #define Z80_MINIMUM_CYCLES_PER_STEP 4
  77.  
  78. /** @brief Opcode interpreted as a trap by the Z80 library. It corresponds to
  79.   * the <tt>ld h,h</tt> instruction in the Z80 ISA. */
  80.  
  81. #define Z80_HOOK 0x64
  82.  
  83. #define Z80_SF 128 /**< @brief Bitmask of the Z80 S flag.   */
  84. #define Z80_ZF  64 /**< @brief Bitmask of the Z80 Z flag.   */
  85. #define Z80_YF  32 /**< @brief Bitmask of the Z80 Y flag.   */
  86. #define Z80_HF  16 /**< @brief Bitmask of the Z80 H flag.   */
  87. #define Z80_XF   8 /**< @brief Bitmask of the Z80 X flag.   */
  88. #define Z80_PF   4 /**< @brief Bitmask of the Z80 P/V flag. */
  89. #define Z80_NF   2 /**< @brief Bitmask of the Z80 N flag.   */
  90. #define Z80_CF   1 /**< @brief Bitmask of the Z80 C flag.   */
  91.  
  92. typedef struct Z80 Z80;
  93.  
  94. /** @brief Defines a pointer to a <tt>@ref Z80</tt> callback function invoked to
  95.   * perform a read operation.
  96.   *
  97.   * @param context The <tt>@ref Z80::context</tt> of the calling object.
  98.   * @param address The memory address or I/O port to read from.
  99.   * @return The byte read. */
  100.  
  101. typedef uint8_t (* Z80Read)(void *context, uint16_t address);
  102.  
  103. /** @brief Defines a pointer to a <tt>@ref Z80</tt> callback function invoked to
  104.   * perform a write operation.
  105.   *
  106.   * @param context The <tt>@ref Z80::context</tt> of the calling object.
  107.   * @param address The memory address or I/O port to write to.
  108.   * @param value The byte to write. */
  109.  
  110. typedef void (* Z80Write)(void *context, uint16_t address, uint8_t value);
  111.  
  112. /** @brief Defines a pointer to a <tt>@ref Z80</tt> callback function invoked to
  113.   * notify a signal change on the HALT line.
  114.   *
  115.   * @param context The <tt>@ref Z80::context</tt> of the calling object.
  116.   * @param signal A code specifying the type of signal change. */
  117.  
  118. typedef void (* Z80Halt)(void *context, uint8_t signal);
  119.  
  120. /** @brief Defines a pointer to a <tt>@ref Z80</tt> callback function invoked to
  121.   * notify an event.
  122.   *
  123.   * @param context The <tt>@ref Z80::context</tt> of the calling object. */
  124.  
  125. typedef void (* Z80Notify)(void *context);
  126.  
  127. /** @brief Defines a pointer to a <tt>@ref Z80</tt> callback function invoked to
  128.   * delegate the emulation of an illegal instruction.
  129.   *
  130.   * @param cpu The calling object.
  131.   * @param opcode The illegal opcode.
  132.   * @return The number of clock cycles consumed by the instruction. */
  133.  
  134. typedef uint8_t (* Z80Illegal)(Z80 *cpu, uint8_t opcode);
  135.  
  136. /** @struct Z80 Z80.h
  137.   *
  138.   * @brief A Z80 CPU emulator.
  139.   *
  140.   * A @c Z80 object contains the state of an emulated Z80 CPU, pointers to
  141.   * callback functions that interconnect the emulator with the external logic
  142.   * and a context that is passed to these functions.
  143.   *
  144.   * Because no constructor function is provided, it is mandatory to directly
  145.   * initialize all callback pointers and <tt>@ref Z80::options</tt> before using
  146.   * an object of this type. Optional callbacks must be set to @c Z_NULL when not
  147.   * in use. */
  148.  
  149. union Data {
  150.         uint32_t value;
  151.         uint8_t uint8_array[4];
  152. };
  153.  
  154. struct Z80 {
  155.  
  156.         /** @brief Number of clock cycles already executed. */
  157.  
  158.         size_t cycles;
  159.  
  160.         /** @brief Maximum number of clock cycles to be executed. */
  161.  
  162.         size_t cycle_limit;
  163.  
  164.         /** @brief Pointer to pass as the first argument to all callback
  165.           * functions.
  166.           *
  167.           * This member is intended to hold a reference to the context to which
  168.           * the object belongs. It is safe not to initialize it when this is not
  169.           * necessary. */
  170.  
  171.         void *context;
  172.  
  173.         /** @brief Invoked to perform an opcode fetch.
  174.           *
  175.           * This callback indicates the beginning of an opcode fetch M-cycle.
  176.           * The function must return the byte located at the memory address
  177.           * specified by the second argument. */
  178.  
  179.         Z80Read fetch_opcode;
  180.  
  181.         /** @brief Invoked to perform a memory read on instruction data.
  182.           *
  183.           * This callback indicates the beginning of a memory read M-cycle
  184.           * during which the CPU fetches one byte of instruction data (i.e., one
  185.           * byte of the instruction that is neither a prefix nor an opcode). The
  186.           * function must return the byte located at the memory address
  187.           * specified by the second argument. */
  188.  
  189.         Z80Read fetch;
  190.  
  191.         /** @brief Invoked to perform a memory read.
  192.           *
  193.           * This callback indicates the beginning of a memory read M-cycle. The
  194.           * function must return the byte located at the memory address
  195.           * specified by the second argument. */
  196.  
  197.         Z80Read read;
  198.  
  199.         /** @brief Invoked to perform a memory write.
  200.           *
  201.           * This callback indicates the beginning of a memory write M-cycle. The
  202.           * function must write the third argument into the memory location
  203.           * specified by the second argument. */
  204.  
  205.         Z80Write write;
  206.  
  207.         /** @brief Invoked to perform an I/O port read.
  208.           *
  209.           * This callback indicates the beginning of an I/O read M-cycle. The
  210.           * function must return the byte read from the I/O port specified by
  211.           * the second argument. */
  212.  
  213.         Z80Read in;
  214.  
  215.         /** @brief Invoked to perform an I/O port write.
  216.           *
  217.           * This callback indicates the beginning of an I/O write M-cycle. The
  218.           * function must write the third argument to the I/O port specified by
  219.           * the second argument. */
  220.  
  221.         Z80Write out;
  222.  
  223.         /** @brief Invoked to notify a signal change on the HALT line.
  224.           *
  225.           * This callback is optional and must be set to @c Z_NULL when not in
  226.           * use. Its invocation is always deferred until the next emulation step
  227.           * so that the emulator can abort the signal change if any invalidating
  228.           * condition occurs, such as the acceptance of an interrupt during the
  229.           * execution of a @c halt instruction.
  230.           *
  231.           * The second parameter of the function specifies the type of signal
  232.           * change and can only contain a boolean value if the Z80 library has
  233.           * not been built with special RESET support:
  234.           *
  235.           * - @c 1 indicates that the HALT line is going low during the last
  236.           *   clock cycle of a @c halt instruction, which means that the CPU
  237.           *   is entering the HALT state.
  238.           *
  239.           * - @c 0 indicates that the HALT line is going high during the last
  240.           *   clock cycle of an internal NOP executed during the HALT state,
  241.           *   i.e., the CPU is exiting the HALT state due to an interrupt or
  242.           *   normal RESET.
  243.           *
  244.           * If the library has been built with special RESET support, the values
  245.           * <tt>@ref Z80_HALT_EXIT_EARLY</tt> and <tt>@ref Z80_HALT_CANCEL</tt>
  246.           * are also possible for the second parameter. */
  247.  
  248.         Z80Halt halt;
  249.  
  250.         /** @brief Invoked to perform an opcode fetch that corresponds to an
  251.           * internal NOP.
  252.           *
  253.           * This callback indicates the beginning of an opcode fetch M-cycle of
  254.           * 4 clock cycles that is generated in the following two cases:
  255.           *
  256.           * - During the HALT state, the CPU repeatedly executes an internal NOP
  257.           *   that fetches the next opcode after the @c halt instruction without
  258.           *   incrementing the PC register. This opcode is read again and again
  259.           *   until an exit condition occurs (i.e., NMI, INT or RESET).
  260.           *
  261.           * - After detecting a special RESET signal, the CPU completes the
  262.           *   ongoing instruction or interrupt response and then zeroes the PC
  263.           *   register during the first clock cycle of the next M1 cycle. If no
  264.           *   interrupt has been accepted at the end of the instruction or
  265.           *   interrupt response, the CPU produces an internal NOP to allow for
  266.           *   the fetch-execute overlap to take place, during which it fetches
  267.           *   the next opcode and zeroes PC.
  268.           *
  269.           * This callback is optional but note that setting it to @c Z_NULL is
  270.           * equivalent to enabling <tt>@ref Z80_OPTION_HALT_SKIP</tt>. */
  271.  
  272.         Z80Read nop;
  273.  
  274.         /** @brief Invoked to perform an opcode fetch that corresponds to a
  275.           * non-maskable interrupt acknowledge M-cycle.
  276.           *
  277.           * This callback is optional and must be set to @c Z_NULL when not in
  278.           * use. It indicates the beginning of an NMI acknowledge M-cycle. The
  279.           * value returned by the function is ignored. */
  280.  
  281.         Z80Read nmia;
  282.  
  283.         /** @brief Invoked to perform a data bus read that corresponds to a
  284.           * maskable interrupt acknowledge M-cycle.
  285.           *
  286.           * This callback is optional and must be set to @c Z_NULL when not in
  287.           * use. It indicates the beginning of an INT acknowledge M-cycle. The
  288.           * function must return the byte that the interrupting I/O device
  289.           * supplies to the CPU via the data bus during this M-cycle.
  290.           *
  291.           * When this callback is @c Z_NULL, the emulator assumes that the value
  292.           * read from the data bus is @c 0xFF. */
  293.  
  294.         Z80Read inta;
  295.  
  296.         /** @brief Invoked to perform a memory read on instruction data during a
  297.           * maskable interrupt response in mode 0.
  298.           *
  299.           * The role of this callback is analogous to that of
  300.           * <tt>@ref Z80::fetch</tt>, but it is specific to the INT response in
  301.           * mode 0. Ideally, the function should return a byte of instruction
  302.           * data that the interrupting I/O device supplies to the CPU via the
  303.           * data bus, but depending on the emulated hardware, the device may not
  304.           * be able to do this during a memory read M-cycle because the memory
  305.           * is addressed instead, in which case the function must return the
  306.           * byte located at the memory address specified by the second
  307.           * parameter.
  308.           *
  309.           * This callback will only be invoked if <tt>@ref Z80::inta</tt> is not
  310.           * @c Z_NULL and returns an opcode that implies subsequent memory read
  311.           * M-cycles to fetch the non-opcode bytes of the instruction, so it is
  312.           * safe not to initialize it or set it to @c Z_NULL if such a scenario
  313.           * is not possible. */
  314.  
  315.         Z80Read int_fetch;
  316.  
  317.         /** @brief Invoked to notify that an <tt>ld i,a</tt> instruction has
  318.           * been fetched.
  319.           *
  320.           * This callback is optional and must be set to @c Z_NULL when not in
  321.           * use. It is invoked before executing the instruction. */
  322.  
  323.         Z80Notify ld_i_a;
  324.  
  325.         /** @brief Invoked to notify that an <tt>ld r,a</tt> instruction has
  326.           * been fetched.
  327.           *
  328.           * This callback is optional and must be set to @c Z_NULL when not in
  329.           * use. It is invoked before executing the instruction. */
  330.  
  331.         Z80Notify ld_r_a;
  332.  
  333.         /** @brief Invoked to notify that a @c reti instruction has been
  334.           * fetched.
  335.           *
  336.           * This callback is optional and must be set to @c Z_NULL when not in
  337.           * use. It is invoked before executing the instruction. */
  338.  
  339.         Z80Notify reti;
  340.  
  341.         /** @brief Invoked to notify that a @c retn instruction has been
  342.           * fetched.
  343.           *
  344.           * This callback is optional and must be set to @c Z_NULL when not in
  345.           * use. It is invoked before executing the instruction. */
  346.  
  347.         Z80Notify retn;
  348.  
  349.         /** @brief Invoked when a trap is fetched.
  350.           *
  351.           * This callback is optional and must be set to @c Z_NULL when not in
  352.           * use, in which case the opcode of the trap will be executed normally.
  353.           * The function receives the memory address of the trap as the second
  354.           * parameter and must return the opcode to be executed instead of the
  355.           * trap. If the function returns a trap (i.e., <tt>@ref Z80_HOOK</tt>),
  356.           * the emulator will do nothing, so the trap will be fetched again
  357.           * unless the function has modified <tt>@ref Z80::pc</tt> or replaced
  358.           * the trap in memory with another opcode. Also note that returning a
  359.           * trap does not revert the increment of <tt>@ref Z80::r</tt> performed
  360.           * before each opcode fetch. */
  361.  
  362.         Z80Read hook;
  363.  
  364.         /** @brief Invoked to delegate the execution of an illegal instruction.
  365.           *
  366.           * This callback is optional and must be set to @c Z_NULL when not in
  367.           * use. Only those instructions with the @c 0xED prefix that behave the
  368.           * same as two consecutive @c nop instructions are considered illegal.
  369.           * The function receives the illegal opcode as the second parameter and
  370.           * must return the number of clock cycles taken by the instruction.
  371.           *
  372.           * At the time of invoking this callback, and relative to the start of
  373.           * the instruction, only <tt>@ref Z80::r</tt> has been incremented
  374.           * (twice), so <tt>@ref Z80::pc</tt> still contains the memory address
  375.           * of the @c 0xED prefix. */
  376.  
  377.         Z80Illegal illegal;
  378.  
  379.         /** @brief Temporary storage used for instruction fetch. */
  380.  
  381.         union Data data;
  382.  
  383.         uint16_t ix_iy[2]; /**< @brief Index registers, IX and IY.    */
  384.         uint16_t pc;       /**< @brief Register PC (program counter). */
  385.         uint16_t sp;       /**< @brief Register SP (stack pointer).   */
  386.  
  387.         /** @brief Temporary index register.
  388.           *
  389.           * All instructions with the @c 0xDD prefix behave exactly the same as
  390.           * their counterparts with the @c 0xFD prefix, differing only in the
  391.           * index register: the former use IX, whereas the latter use IY. When
  392.           * one of these prefixes is fetched, the corresponding index register
  393.           * is copied into this member; the instruction logic is then executed
  394.           * and finally this member is copied back into the index register. */
  395.  
  396.         uint16_t xy;
  397.  
  398.         uint16_t memptr; /**< @brief Register MEMPTR, also known as WZ.        */
  399.         uint16_t af;     /**< @brief Register pair AF (accumulator and flags). */
  400.         uint16_t bc;     /**< @brief Register pair BC.                         */
  401.         uint16_t de;     /**< @brief Register pair DE.                         */
  402.         uint16_t hl;     /**< @brief Register pair HL.                         */
  403.         uint16_t af_;    /**< @brief Register pair AF'.                        */
  404.         uint16_t bc_;    /**< @brief Register pair BC'.                        */
  405.         uint16_t de_;    /**< @brief Register pair DE'.                        */
  406.         uint16_t hl_;    /**< @brief Register pair HL'.                        */
  407.         uint8_t r;      /**< @brief Register R (memory refresh).              */
  408.         uint8_t i;      /**< @brief Register I (interrupt vector base).       */
  409.  
  410.         /** @brief Backup of bit 7 of the R register.
  411.           *
  412.           * The Z80 CPU increments the R register during each M1 cycle without
  413.           * altering its most significant bit, commonly known as R7. However,
  414.           * the emulator only performs normal full-byte increments for speed
  415.           * reasons, which eventually corrupts R7.
  416.           *
  417.           * Before entering the execution loop, both <tt>@ref z80_execute</tt>
  418.           * and <tt>@ref z80_run</tt> copy <tt>@ref Z80::r</tt> into this member
  419.           * to preserve the value of R7, so that they can restore it before
  420.           * returning. The emulation of the <tt>ld r, a</tt> instruction also
  421.           * updates the value of this member. */
  422.  
  423.         uint8_t r7;
  424.  
  425.         /** @brief Maskable interrupt mode.
  426.           *
  427.           * Contains the number of the maskable interrupt mode in use: @c 0,
  428.           * @c 1 or @c 2. */
  429.  
  430.         uint8_t im;
  431.  
  432.         /** @brief Requests pending to be responded. */
  433.  
  434.         uint8_t request;
  435.  
  436.         /** @brief Type of unfinished operation to be resumed. */
  437.  
  438.         uint8_t resume;
  439.  
  440.         uint8_t iff1; /**< @brief Interrupt enable flip-flop #1 (IFF1). */
  441.         uint8_t iff2; /**< @brief Interrupt enable flip-flop #2 (IFF2). */
  442.         uint8_t q;    /**< @brief Pseudo-register Q. */
  443.  
  444.         /** @brief Emulation options.
  445.           *
  446.           * This member specifies the different emulation options that are
  447.           * enabled. It is mandatory to initialize it before using the emulator.
  448.           * Setting it to @c 0 disables all options. */
  449.  
  450.         uint8_t options;
  451.  
  452.         /** @brief State of the INT line.
  453.           *
  454.           * The value of this member is @c 1 if the INT line is low; otherwise,
  455.           * @c 0. */
  456.  
  457.         uint8_t int_line;
  458.  
  459.         /** @brief State of the HALT line.
  460.           *
  461.           * The value of this member is @c 1 if the HALT line is low; otherwise,
  462.           * @c 0. The emulator updates this member before invoking
  463.           * <tt>@ref Z80::halt</tt>, not after. */
  464.  
  465.         uint8_t halt_line;
  466. };
  467.  
  468. /** @brief <tt>@ref Z80::options</tt> bitmask that enables emulation of the
  469.   * <tt>out (c),255</tt> instruction, specific to the Zilog Z80 CMOS. */
  470.  
  471. #define Z80_OPTION_OUT_VC_255 1
  472.  
  473. /** @brief <tt>@ref Z80::options</tt> bitmask that enables emulation of the bug
  474.   * affecting the Zilog Z80 NMOS, which causes the P/V flag to be reset when a
  475.   * maskable interrupt is accepted during the execution of the
  476.   * <tt>ld a,{i|r}</tt> instructions. */
  477.  
  478. #define Z80_OPTION_LD_A_IR_BUG 2
  479.  
  480. /** @brief <tt>@ref Z80::options</tt> bitmask that enables the HALTskip
  481.   * optimization. */
  482.  
  483. #define Z80_OPTION_HALT_SKIP 4
  484.  
  485. /** @brief <tt>@ref Z80::options</tt> bitmask that enables the XQ factor in the
  486.   * emulation of the @c ccf and @c scf instructions. */
  487.  
  488. #define Z80_OPTION_XQ 8
  489.  
  490. /** @brief <tt>@ref Z80::options</tt> bitmask that enables notifications for any
  491.   * @c reti or @c retn instruction executed during the interrupt mode 0
  492.   * response. */
  493.  
  494. #define Z80_OPTION_IM0_RETX_NOTIFICATIONS 16
  495.  
  496. /** @brief <tt>@ref Z80::options</tt> bitmask that enables the YQ factor in the
  497.   * emulation of the @c ccf and @c scf instructions. */
  498.  
  499. #define Z80_OPTION_YQ 32
  500.  
  501. /** @brief <tt>@ref Z80::options</tt> bitmask that enables full emulation of the
  502.   * Zilog NMOS models. */
  503.  
  504. #define Z80_MODEL_ZILOG_NMOS \
  505.         (Z80_OPTION_LD_A_IR_BUG | Z80_OPTION_XQ | Z80_OPTION_YQ)
  506.  
  507. /** @brief <tt>@ref Z80::options</tt> bitmask that enables full emulation of the
  508.   * Zilog CMOS models. */
  509.  
  510. #define Z80_MODEL_ZILOG_CMOS \
  511.         (Z80_OPTION_OUT_VC_255 | Z80_OPTION_XQ | Z80_OPTION_YQ)
  512.  
  513. /** @brief <tt>@ref Z80::options</tt> bitmask that enables full emulation of the
  514.   * NEC NMOS models. */
  515.  
  516. #define Z80_MODEL_NEC_NMOS \
  517.         Z80_OPTION_LD_A_IR_BUG
  518.  
  519. /** @brief <tt>@ref Z80::options</tt> bitmask that enables full emulation of the
  520.   * ST CMOS models. */
  521.  
  522. #define Z80_MODEL_ST_CMOS \
  523.         (Z80_OPTION_OUT_VC_255 | Z80_OPTION_LD_A_IR_BUG | Z80_OPTION_YQ)
  524.  
  525. /** @brief <tt>@ref Z80::request</tt> bitmask that prevents the NMI signal from
  526.   * being accepted. */
  527.  
  528. #define Z80_REQUEST_REJECT_NMI 2
  529.  
  530. /** @brief <tt>@ref Z80::request</tt> bitmask indicating that an NMI signal has
  531.   * been received. */
  532.  
  533. #define Z80_REQUEST_NMI 4
  534.  
  535. /** @brief <tt>@ref Z80::request</tt> bitmask indicating that the INT line is
  536.   * low and interrupts are enabled. */
  537.  
  538. #define Z80_REQUEST_INT 8
  539.  
  540. /** @brief <tt>@ref Z80::request</tt> bitmask indicating that a special RESET
  541.   * signal has been received. */
  542.  
  543. #define Z80_REQUEST_SPECIAL_RESET 16
  544.  
  545. /** @brief <tt>@ref Z80::resume</tt> value indicating that the emulator ran out
  546.   * of clock cycles during the HALT state. */
  547.  
  548. #define Z80_RESUME_HALT 1
  549.  
  550. /** @brief <tt>@ref Z80::resume</tt> value indicating that the emulator ran out
  551.   * of clock cycles by fetching a prefix @c 0xDD or @c 0xFD. */
  552.  
  553. #define Z80_RESUME_XY 2
  554.  
  555. /** @brief <tt>@ref Z80::resume</tt> value indicating that the emulator ran out
  556.   * of clock cycles by fetching a prefix @c 0xDD or @c 0xFD, during a maskable
  557.   * interrupt response in mode 0. */
  558.  
  559. #define Z80_RESUME_IM0_XY 3
  560.  
  561. /** @brief Value of the second parameter of <tt>@ref Z80::halt</tt> when the
  562.   * HALT line goes high due to a special RESET signal. */
  563.  
  564. #define Z80_HALT_EXIT_EARLY 2
  565.  
  566. /** @brief Value of the second paratemer of <tt>@ref Z80::halt</tt> when the
  567.   * HALT line goes low and then high due to a special RESET signal during the
  568.   * execution of a @c halt instruction. */
  569.  
  570. #define Z80_HALT_CANCEL 3
  571.  
  572.  
  573.  
  574. /** @brief Sets the power state of a <tt>@ref Z80</tt>.
  575.   *
  576.   * @param self Pointer to the object on which the function is called.
  577.   * @param state
  578.   *   @c Z_TRUE  = power on;
  579.   *   @c Z_FALSE = power off. */
  580.  
  581. void z80_power(Z80 *self, uint8_t state);
  582.  
  583. /** @brief Performs an instantaneous normal RESET on a <tt>@ref Z80</tt>.
  584.   *
  585.   * @param self Pointer to the object on which the function is called. */
  586.  
  587. void z80_instant_reset(Z80 *self);
  588.  
  589. /** @brief Sends a special RESET signal to a <tt>@ref Z80</tt>.
  590.   *
  591.   * @sa
  592.   * - http://www.primrosebank.net/computers/z80/z80_special_reset.htm
  593.   * - US Patent 4486827
  594.   *
  595.   * @param self Pointer to the object on which the function is called. */
  596.  
  597. void z80_special_reset(Z80 *self);
  598.  
  599. /** @brief Sets the state of the INT line of a <tt>@ref Z80</tt>.
  600.   *
  601.   * @param self Pointer to the object on which the function is called.
  602.   * @param state
  603.   *   @c Z_TRUE  = set line low;
  604.   *   @c Z_FALSE = set line high. */
  605.  
  606. void z80_int(Z80 *self, uint8_t state);
  607.  
  608. /** @brief Triggers the NMI line of a <tt>@ref Z80</tt>.
  609.   *
  610.   * @param self Pointer to the object on which the function is called. */
  611.  
  612. void z80_nmi(Z80 *self);
  613.  
  614. /** @brief Runs a <tt>@ref Z80</tt> for a given number of clock @p cycles,
  615.   * executing only instructions without responding to signals.
  616.   *
  617.   * @param self Pointer to the object on which the function is called.
  618.   * @param cycles Number of clock cycles to be emulated.
  619.   * @return The actual number of clock cycles emulated. */
  620.  
  621. size_t z80_execute(Z80 *self, size_t cycles);
  622.  
  623. /** @brief Runs a <tt>@ref Z80</tt> for a given number of clock @p cycles.
  624.   *
  625.   * @param self Pointer to the object on which the function is called.
  626.   * @param cycles Number of clock cycles to be emulated.
  627.   * @return The actual number of clock cycles emulated. */
  628.  
  629. size_t z80_run(Z80 *self, size_t cycles);
  630.  
  631.  
  632. /** @brief Ends the emulation loop of <tt>@ref z80_execute</tt> or
  633.   * <tt>@ref z80_run</tt>.
  634.   *
  635.   * This function should only be used inside callback functions. It zeroes
  636.   * <tt>@ref Z80::cycle_limit</tt>, thus breaking the emulation loop after the
  637.   * ongoing emulation step has finished executing.
  638.   *
  639.   * @param self Pointer to the object on which the function is called. */
  640.  
  641. static inline void z80_break(Z80 *self)
  642.         {self->cycle_limit = 0;}
  643.  
  644.  
  645. /** @brief Gets the full value of the R register of a <tt>@ref Z80</tt>.
  646.   *
  647.   * @param self Pointer to the object on which the function is called.
  648.   * @return The value of the R register. */
  649.  
  650. static inline uint8_t z80_r(Z80 const *self)
  651.         {return (self->r & 127) | (self->r7 & 128);}
  652.  
  653.  
  654. /** @brief Obtains the refresh address of the M1 cycle being executed by a
  655.   * <tt>@ref Z80</tt>.
  656.   *
  657.   * @param self Pointer to the object on which the function is called.
  658.   * @return The refresh address. */
  659.  
  660. static inline uint16_t z80_refresh_address(Z80 const *self)
  661.         {
  662.         return (uint16_t)(
  663.                 ((uint16_t)self->i << 8) |
  664.                 ((self->r - 1) & 127)   |
  665.                 (self->r7 & 128));
  666.         }
  667.  
  668.  
  669. /** @brief Obtains the clock cycle, relative to the start of the instruction, at
  670.   * which the I/O read M-cycle being executed by a <tt>@ref Z80</tt> begins.
  671.   *
  672.   * @param self Pointer to the object on which the function is called.
  673.   * @return The clock cycle at which the I/O read M-cycle begins. */
  674.  
  675. static inline uint8_t z80_in_cycle(Z80 const *self)
  676.         {
  677.         return (uint8_t)(self->data.uint8_array[0] == 0xDB
  678.                 ? /* in a,(BYTE) : 4+3 */
  679.                 7
  680.                 : /* in J,(c) / in (c) : 4+4 */
  681.                 8
  682.                 + /* ini / ind / inir / indr : 4+5 */
  683.                 (self->data.uint8_array[1] >> 7));
  684.         }
  685.  
  686.  
  687. /** @brief Obtains the clock cycle, relative to the start of the instruction, at
  688.   * which the I/O write M-cycle being executed by a <tt>@ref Z80</tt> begins.
  689.   *
  690.   * @param self Pointer to the object on which the function is called.
  691.   * @return The clock cycle at which the I/O write M-cycle begins. */
  692.  
  693. static inline uint8_t z80_out_cycle(Z80 const *self)
  694.         {
  695.         return (uint8_t)(self->data.uint8_array[0] == 0xD3
  696.                 ? /* out (BYTE),a : 4+3 */
  697.                 7
  698.                 : /* out (c),J / out (c),0 : 4+4 */
  699.                 8
  700.                 + /* outi / outd / otir / otdr : 4+5+3 */
  701.                 ((self->data.uint8_array[1] >> 7) << 2));
  702.         }
  703.  
  704.  
  705. #endif /* Z80_H */
  706.