Skip to content
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

pull request bcae46 #87

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added M/TC/About.exe
Binary file not shown.
Binary file added M/TC/BGI/ATT.BGI
Binary file not shown.
1,403 changes: 1,403 additions & 0 deletions M/TC/BGI/BGIDEMO.C

Large diffs are not rendered by default.

Binary file added M/TC/BGI/BGIOBJ.EXE
Binary file not shown.
Binary file added M/TC/BGI/BOLD.CHR
Binary file not shown.
Binary file added M/TC/BGI/CGA.BGI
Binary file not shown.
Binary file added M/TC/BGI/CHKLIST.MS
Binary file not shown.
Binary file added M/TC/BGI/EGAVGA.BGI
Binary file not shown.
Binary file added M/TC/BGI/EURO.CHR
Binary file not shown.
Binary file added M/TC/BGI/GOTH.CHR
Binary file not shown.
Binary file added M/TC/BGI/HERC.BGI
Binary file not shown.
Binary file added M/TC/BGI/IBM8514.BGI
Binary file not shown.
Binary file added M/TC/BGI/LCOM.CHR
Binary file not shown.
Binary file added M/TC/BGI/LITT.CHR
Binary file not shown.
Binary file added M/TC/BGI/PC3270.BGI
Binary file not shown.
Binary file added M/TC/BGI/SANS.CHR
Binary file not shown.
Binary file added M/TC/BGI/SCRI.CHR
Binary file not shown.
Binary file added M/TC/BGI/SIMP.CHR
Binary file not shown.
Binary file added M/TC/BGI/TRIP.CHR
Binary file not shown.
Binary file added M/TC/BGI/TSCR.CHR
Binary file not shown.
17 changes: 17 additions & 0 deletions M/TC/BIN/AA.BAK
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include <stdlib.h>
#include <stdio.h>
#include <values.h>
#include <time.h>

int main(void)
{
int i,j;

for(j=0;j<131;j++)
{
// randomize();
for(i=0;i<233;i++)
printf("%d\n", rand() % MAXINT);
}
return 0;
}
17 changes: 17 additions & 0 deletions M/TC/BIN/AA.CPP
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include <stdlib.h>
#include <stdio.h>
#include <values.h>
#include <time.h>

int main(void)
{
int i,j;

for(j=0;j<150;j++)
{
// randomize();
for(i=0;i<200;i++)
printf("%d\n", rand() % MAXINT);
}
return 0;
}
Binary file added M/TC/BIN/AA.EXE
Binary file not shown.
Binary file added M/TC/BIN/AA.OBJ
Binary file not shown.
Loading