Skip to content

Commit

Permalink
Updated to CSpect 2.19.0.3 Plugin interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Threetwosevensixseven committed Jan 18, 2023
1 parent 26bb2b1 commit 409dad6
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 7 deletions.
Binary file modified Common/Plugin.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ The sample plugin included with CSpect.
## CSpect
CSpect is a ZXSpectrum emulator by Mike Dailly.

Download the latest version [here](http://www.cspect.org/). These plugins only work with v2.12.20 or newer.
Download the latest version [here](http://www.cspect.org/). These plugins only work with v2.19.0 or newer.

## Copyright and Licence
All plugins except i2C_Sample are copyright © 2019-2020 Robin Verhagen-Guest, and are licensed under [Apache 2.0](https://github.com/Threetwosevensixseven/CSpectPlugins/blob/master/LICENSE).
All plugins except i2C_Sample are copyright © 2019-2023 Robin Verhagen-Guest, and are licensed under [Apache 2.0](https://github.com/Threetwosevensixseven/CSpectPlugins/blob/master/LICENSE).

CSpect and the i2C_Sample example project are copyright © 1998-2020 Mike Dailly All rights reserved.
CSpect and the i2C_Sample example project are copyright © 1998-2023 Mike Dailly All rights reserved.

[hdfmonkey](https://github.com/gasman/hdfmonkey) is copyright © Matt Westcott 2010, and is licensed under [GPL-3.0](https://github.com/gasman/hdfmonkey/blob/master/COPYING).

Expand Down
4 changes: 4 additions & 0 deletions RTC/Plugin/RTCPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,9 @@ public bool KeyPressed(int _id)
public void Reset()
{
}

public void OSTick()
{
}
}
}
2 changes: 1 addition & 1 deletion RTC/RTC.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\..\..\..\..\spec\CSpect2_12_20\</OutputPath>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down
2 changes: 1 addition & 1 deletion RTCSys/RTCSys.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\..\..\..\..\spec\CSpect2_12_20\</OutputPath>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down
4 changes: 4 additions & 0 deletions RTCSys/RTCSys_Device.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,5 +169,9 @@ public bool KeyPressed(int _id)
public void Reset()
{
}

public void OSTick()
{
}
}
}
2 changes: 1 addition & 1 deletion UARTLogger/UARTLogger.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\..\..\..\..\spec\CSpect2_12_20\</OutputPath>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down
4 changes: 4 additions & 0 deletions UARTLogger/UARTLogger_Device.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,9 @@ public bool KeyPressed(int _id)
public void Reset()
{
}

public void OSTick()
{
}
}
}
2 changes: 1 addition & 1 deletion UARTReplacement/UARTReplacement.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\..\..\..\..\spec\CSpect2_12_20\</OutputPath>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down
4 changes: 4 additions & 0 deletions UARTReplacement/UARTReplacement_Device.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,10 @@ public bool KeyPressed(int _id)
public void Reset()
{
}

public void OSTick()
{
}
}
}

5 changes: 5 additions & 0 deletions i2C_Sample/Class1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,10 @@ public bool KeyPressed(int _id)
public void Reset()
{
}

public void OSTick()
{
throw new NotImplementedException();
}
}
}

0 comments on commit 409dad6

Please sign in to comment.