seibucop: missing sourcefile header (nw)

This commit is contained in:
hap 2020-04-04 16:09:11 +02:00
parent c1fea1f76c
commit 53ec8c6f89
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
// license:LGPL-2.1+
// copyright-holders:Olivier Galibert, Angelo Salese, David Haywood, Tomasz Slanina
/* Main COP functionality */ /* Main COP functionality */
// notes about tables: // notes about tables:

View File

@ -1,3 +1,5 @@
// license:LGPL-2.1+
// copyright-holders:Olivier Galibert, Angelo Salese, David Haywood, Tomasz Slanina
// ALL games use this - tilemap DMA (RAM -> private buffer) // ALL games use this - tilemap DMA (RAM -> private buffer)
void raiden2cop_device::dma_tilemap_buffer() void raiden2cop_device::dma_tilemap_buffer()
@ -184,5 +186,3 @@ void raiden2cop_device::dma_zsorting(uint16_t data)
for(int i=0; i<data; i++) for(int i=0; i<data; i++)
m_host_space->write_word(cop_sort_lookup + 2*i, entries[i].val); m_host_space->write_word(cop_sort_lookup + 2*i, entries[i].val);
} }