8000 ADDS Regent 25 emulation by davidrg · Pull Request #255 · davidrg/ckwin · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ADDS Regent 25 emulation #255

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ making basic telnet or serial connections.
Supported Terminal Emulations
-----------------------------

ADM-3A and ADM-5; ANSI-BBS; Avatar/0+; AT386; BeBox ANSI; Data General DASHER D200, D210;
ADDS Regent 25; ADM-3A and ADM-5; ANSI-BBS; Avatar/0+; AT386; BeBox ANSI; Data General DASHER D200, D210;
Data General DASHER D217 in native and Unix modes; DEC VT52; DEC VT100, VT102,
VT220, VT320 with color extensions; Hazeltine 1500; Heath/Zenith 19;
Hewlett Packard 2621A; HPTERM; IBM HFT and AIXTERM; IBM 3151; Linux console;
Expand Down Expand Up @@ -139,6 +139,7 @@ forward:
* Mouse wheel support and terminal mouse reporting have been implemented
* REXX is now supported on Windows as well as OS/2
* A selection of other bugs fixed and other minor features added
* ADDS Regent 25 Emulation

A full [Change Log](doc/changes.md) is available and updated for major releases.

Expand Down
5 changes: 4 additions & 1 deletion kermit/k95/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ OBJS = $(OUTDIR)/ckcmai$(O) $(OUTDIR)/ckcfns$(O) $(OUTDIR)/ckcfn2$(O) \
$(OUTDIR)/ckohzl$(O) $(OUTDIR)/ckohp$(O) $(OUTDIR)/ckoqnx$(O) \
$(OUTDIR)/cknnbi$(O) $(OUTDIR)/ckop$(O) $(OUTDIR)/p_callbk$(O) \
$(OUTDIR)/p_global$(O) $(OUTDIR)/p_omalloc$(O) $(OUTDIR)/p_error$(O) \
$(OUTDIR)/p_common$(O) $(OUTDIR)/p_tl$(O) $(OUTDIR)/p_dir$(O)
$(OUTDIR)/p_common$(O) $(OUTDIR)/p_tl$(O) $(OUTDIR)/p_dir$(O) \
$(OUTDIR)/ckoads$(O)

# For SSH-enabled builds
#OBJS = $(OBJS) ckossh$(O) ckolssh$(O) ckorbf$(O) ckolsshs$(O)
Expand Down Expand Up @@ -417,6 +418,8 @@ $(OUTDIR)/ckovc$(O): ckovc.c ckovc.h ckcdeb.h ckoker.h ckclib.h ckcker.h \
ckcasc.h ckocon.h ckuusr.h
$(OUTDIR)/ckoadm$(O): ckoadm.c ckoadm.h ckcdeb.h ckoker.h ckclib.h ckcker.h \
ckcasc.h ckocon.h ckuusr.h ckcnet.h ckctel.h ckcuni.h
$(OUTDIR)/ckoads$(O): ckoads.c ckoads.h ckcdeb.h ckcker.h ckcuni.h ckocon.h \
ckcnet.h ckcasc.h ckuusr.h
$(OUTDIR)/ckohzl$(O): ckohzl.c ckohzl.h ckcdeb.h ckoker.h ckclib.h ckcker.h \
ckcasc.h ckocon.h ckuusr.h ckcnet.h ckctel.h ckcuni.h
$(OUTDIR)/ckohp$(O): ckohp.c ckohp.h ckcdeb.h ckoker.h ckclib.h ckcker.h \
Expand Down
Loading
Loading
0