Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
idolpx committed Dec 14, 2023
2 parents 22d5e2d + 3e54bdb commit 5013b50
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions lib/bus/iec/protocol/jiffydos.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#ifdef BUILD_IEC
// Meatloaf - A Commodore 64/128 multi-device emulator
// https://github.com/idolpx/meatloaf
// Copyright(C) 2020 James Johnston
Expand Down Expand Up @@ -222,3 +223,5 @@ bool JiffyDOS::sendByte ( uint8_t data, bool signalEOI )

return true;
} // sendByte

#endif /* BUILD_IEC*/
2 changes: 1 addition & 1 deletion lib/device/drivewire/fuji.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1638,7 +1638,7 @@ void drivewireFuji::process()
switch (c)
{
case FUJICMD_GET_SCAN_RESULT:
net_scan_result;
net_scan_result();
break;
case FUJICMD_SCAN_NETWORKS:
net_scan_networks();
Expand Down
2 changes: 2 additions & 0 deletions lib/meatloaf/wrappers/iec_buffer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#ifdef BUILD_IEC
#include "iec_buffer.h"

oiecstream iecStream;
Expand Down Expand Up @@ -126,3 +127,4 @@ void oiecstream::putUtf8(U8Char* codePoint) {

// (*this) << converted;
// }
#endif /* BUILD_IEC */
2 changes: 2 additions & 0 deletions lib/meatloaf/wrappers/iec_buffer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#ifdef BUILD_IEC
#ifndef MEATLOAF_WRAPPER_IEC_BUFFER
#define MEATLOAF_WRAPPER_IEC_BUFFER

Expand Down Expand Up @@ -87,3 +88,4 @@ class oiecstream : private std::filebuf, public std::ostream {
extern oiecstream iecStream;

#endif /* MEATLOAF_WRAPPER_IEC_BUFFER */
#endif /* BUILD_IEC */

0 comments on commit 5013b50

Please sign in to comment.