mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-07 08:41:45 +00:00
17 lines
381 B
C#
17 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.IL.NativeX86 {
|
|
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;
|
|
}
|
|
}
|
|
}
|