Table of Contents

popmessage()


The popmessage() function is used to display on-screen info at the bottom of the emulated display.

Syntax


Declaration

Declared in src/emu/mame.h as

void CLIB_DECL popmessage(const char *format, ...) ATTR_PRINTF(1,2);

Parameters

Returns

Nothing.

Example

popmessage("IOC IRQ status - %02x", sys.ioc.irqstatus);

Will output

IOC IRC status - 03

on the screen.

See also