本文整理汇总了C++中address_space::read_word方法的典型用法代码示例。如果您正苦于以下问题:C++ address_space::read_word方法的具体用法?C++ address_space::read_word怎么用?C++ address_space::read_word使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类address_space
的用法示例。
在下文中一共展示了address_space::read_word方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
// tile-based
void joystand_state::draw_bg15_tile(address_space &space, int x, int y, UINT16 code)
{
x *= 16;
y *= 16;
int srcaddr = 0x800000 + (code % (0x800 * 6)) * 16 * 16 * 2;
for (int ty = 0; ty < 16; ++ty)
{
for (int tx = 0; tx < 16; ++tx)
{
UINT16 val = space.read_word(srcaddr + ty * 16 * 2 + tx * 2);
m_bg15_bitmap[1].pix32(y + ty , x + tx) = (val & 0x8000) ? BG15_TRANSPARENT : m_bg15_palette->pen_color(val & 0x7fff);
}
}
}