Replace comma with semicolon

This commit is contained in:
Allofich
2021-05-19 10:22:47 +09:00
parent c5ae88ef83
commit 70dd450640

View File

@@ -495,7 +495,7 @@ public:
CBreakpoint(void);
void SetAddress (uint16_t seg, uint32_t off) { location = (PhysPt)GetAddress(seg,off); type = BKPNT_PHYSICAL; segment = seg; offset = off; };
void SetAddress (PhysPt adr) { location = adr; type = BKPNT_PHYSICAL; };
void SetInt (uint8_t _intNr, uint16_t ah, uint16_t al) { intNr = _intNr, ahValue = ah; alValue = al; type = BKPNT_INTERRUPT; };
void SetInt (uint8_t _intNr, uint16_t ah, uint16_t al) { intNr = _intNr; ahValue = ah; alValue = al; type = BKPNT_INTERRUPT; };
void SetOnce (bool _once) { once = _once; };
void SetType (EBreakpoint _type) { type = _type; };
void SetValue (uint8_t value) { ahValue = value; };