default status header off

This commit is contained in:
Stephen Crane 2018-09-13 11:39:09 +01:00
parent e763508f8b
commit ad947c887c
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ public:
void run(unsigned);
void reset();
void raise(int);
char *status(char *buf, size_t n, bool hdr);
char *status(char *buf, size_t n, bool hdr=false);
void checkpoint(Stream &);
void restore(Stream &);

View File

@ -11,7 +11,7 @@ public:
void raise(int);
void reset();
void run(unsigned);
char *status(char *buf, size_t n, bool hdr);
char *status(char *buf, size_t n, bool hdr=false);
void checkpoint(Stream &);
void restore(Stream &);

2
z80.h
View File

@ -11,7 +11,7 @@ public:
void run(unsigned);
void reset();
void raise(int level) { _irq_pending = level; }
char *status(char *buf, size_t n, bool hdr);
char *status(char *buf, size_t n, bool hdr=false);
void checkpoint(Stream &);
void restore(Stream &);