I have a Rezon pcb if you need any info from it. . . .
Yes! there are a few pieces of info I'd like though because the PCB is so different than others I don't have any specific chip numbers or pins I can give you.
So if you're up for
a multi-meter scavenger hunt, here's what I need!
There are 2 addresses that I need to figure out how they're expressed in hardware:
Code:
map(0x500004, 0x500005).w(FUNC(seta_state::ipl1_ack_w));
map(0x500006, 0x500007).nopr();
First of all I don't trust that MAME has correctly identified 0x500004 as an IPL1 Acknowledge, some other games they've identified IRQs like this incorrectly.
secondly they've the address at 0x500006. I suspect that this is the watchdog, or it could very well be a different IRQ.
So ultimately what I want to know is, for those two addresses which IPL is it, or are either of them the Watch dog?
Here's my attempt at explaining how the circuit works:
I'll attempt to explain, and this will probably be confusing, but after this explanation I'll try to put some simplified steps to unraveling all of this.

Here is what I expect:
-One of the PALs generates an enable signal for the 0x50#### address range. Then that will go to a Demultiplexer somewhere (usually a 74LS139 on these Seta Board) which will direct to the more specific (0x500004 or 0x500006 ranges)
-Assuming it's a 74LS139 that Demultiplexer there's probably only 1 or 2 of these on the whole board.
----The PAL output (which will be on the pin 11 through pin 20 side of the chip) will go to either Pin 1 or pin 15, on the demultiplexer
----On that same demultiplexer either Pin 2&3 or Pin 13&14 will be attached to A1 & A2 (Pin 29 and Pin 30) of the 68K CPU
----The remaining pins are the outputs, one will go to the the coin counter circuit, one will go to the video registers circuit, and two others will go to our mystery addresses
Now the Watchdog circuit for most of these seta boards is reset using a 74LS161 chip. There should probably only be 1 of these on the whole PCB and it's usually somewhere between the CPU and the front edge of the PCB the reset for this is pin 1. BUT we don't know for sure that either of our two mystery addresses are a watch-dog. so this could be a red herring
IPLs are on the 68K (Pin 23 for IPL2, Pin 24 for IPL1 and Pin 25 for IPL0). there's usually a flip-flop chip between the IPL pin of the 68K and the place where it's triggered. Depending on what else connects to those fip flop will determine what that IPL is for (such as Vblank, or sound interrupt, etc.) There are a few different flip-flop chips that could be used here. I've seen 74LS74 as well 74LS107. and there are others that could potentially be used.
How I would approach this:
1. I would start identifying a 74LS161 chip (I think U11 based on Rezon pictures I'm seeing)
2. Figure out where any demultiplexers are (I think maybe U15 or U41 based on pictures, there could be others)
3. Figure out where pin 1 of the 74LS161 chip goes (good chance it's one of the pins of those demultiplexers, which chip and which pin?)
4. Confirm that the addressing pins of the demultiplexer go to where we think they do (PAL output on Pin 1 or pin 15, A1 and A2 on 68K on the next two pins down from the PAL pin).
5. From here we'd probably work out next steps based on information we gathered in the above steps. but one of the other pins of the demultiplexer will go to a flip flip (maybe U42?) and maybe a different pin on that flip flop goes to an IPL etc.
I typically create a spreadsheet and map out the chips to easily keep track of which pins I've identified and where they go.
for instance here is the demultiplexer and flip-flop pin map for Zing Zing Zip:
and here's the one I put together for sokonuke:
I suspect that Rezon will be similar to both of these with some subtle differences.
Zing Zip above might be a bit challenging to follow because there are jumpers in the mix so that the IPL address can change based on the jumper configuration.