mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
17 lines
382 B
C#
17 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.IL.X86.Native {
|
|
partial class RuntimeEngineImpl {
|
|
|
|
private static void WriteToPort(ushort aPort, byte aData) {
|
|
// implemented by OpCodeMap
|
|
}
|
|
private static byte ReadFromPort(ushort aPort) {
|
|
// implemented by OpCodeMap
|
|
return 0;
|
|
}
|
|
}
|
|
}
|