Definitely post it! I'm getting back into the crt light gun scene after some hiatus and this could be useful 
Sure, I've attached them here. But a few things...
1.
In the mame root directory, there is an artwork directory already there, and you need to create a folder for the rom name down in the artwork directory, and rename the attached files to default.lay down in there.
So for example, create /artwork/term2 and place term2.txt in there and rename it to default.lay
2.
I have experimented a bit and there is a give/take with how many every frames you set the flash. To me there was some noticeable lag when having it set to show every 5 frames, since the position updates every 5 frames. But the flashing only happens every 5 frames. In my terminator 2 one I set it to 3 and I found that more enjoyable to play as far as accuracy goes because there is less delay. But the tradeoff is that the screen is flashing every 3 frames instead of every 5, which is nearly double. So basically it's up to you to find your sweet spot.
In each file there is a line of code down around line 45 or so that is
if count % 3 < 1 then
That 3 number there is the frame that the flash will happen on. In term2.txt it is currently set to 3, but in the other 2 it's set to 5. So you can play around with it and set it to what you want. I hadn't played revx since I made the change to 3 but I think I am going to because that game I find myself holding the trigger more often than Terminator 2.
Let me know if you have any other questions. Also if there are any other light gun games similar to this in MAME where they aren't true "lightgun" games like these 3, let me know and I can try to mess with those too. It's pretty easy to make these now that I have the base logic and stuff for it, I just have to find the input values for each game which is simple to do looking at the driver files.