mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2026-03-10 23:25:13 +00:00
30 lines
406 B
Objective-C
30 lines
406 B
Objective-C
//
|
|
// GSOSConsole.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/9/2016.
|
|
//
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "Emulator.h"
|
|
#include "iGeometry.h"
|
|
#include "Screen.h"
|
|
|
|
@interface GSOSConsole : NSObject <Emulator> {
|
|
unsigned cs;
|
|
|
|
TextPort _textPort;
|
|
|
|
std::vector<TextPort> _tpStack;
|
|
|
|
int _scratch[4];
|
|
|
|
int _cursorType;
|
|
bool _consLF;
|
|
bool _consDLE;
|
|
}
|
|
|
|
@end
|