-
Notifications
You must be signed in to change notification settings - Fork 0
/
GRAPH01.ASM
1927 lines (1927 loc) · 33.2 KB
/
GRAPH01.ASM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ifndef ??version
?debug macro
endm
$comm macro name,dist,size,count
comm dist name:BYTE:count*size
endm
else
$comm macro name,dist,size,count
comm dist name[size]:BYTE:count
endm
endif
?debug S "graph01.c"
?debug C E9F8B5773B09677261706830312E63
?debug C E920085C1613433A5C54435C494E434C5544455C646F732E68
?debug C E920085C1615433A5C54435C494E434C5544455C737464696F2E68
?debug C E920085C1616433A5C54435C494E434C5544455C7374646C69622E+
?debug C 68
?debug C E920085C1614433A5C54435C494E434C5544455C74696D652E68
?debug C E920085C1615433A5C54435C494E434C5544455C636F6E696F2E68
GRAPH01_TEXT segment byte public 'CODE'
GRAPH01_TEXT ends
assume cs:GRAPH01_TEXT,ds:GRAPH01_DATA
GRAPH01_DATA segment word public 'DATA'
d@ label byte
d@w label word
b@ label byte
b@w label word
GRAPH01_DATA ends
GRAPH01_TEXT segment byte public 'CODE'
;
; void main()
;
assume cs:GRAPH01_TEXT
_main proc far
push bp
mov bp,sp
sub sp,50
push si
push di
push ds
mov ax,GRAPH01_DATA
mov ds,ax
;
; {
; FILE *iniStream, *inStream;
;
; int iLauf, jLauf, syst_x, syst_y, x_achse, y_achse, itaste, disp, fn_disp, y_wert, x_wert, y_symb, index;
; int inff=1, inftyp=1, inff_x, inff_y, init=1, symb_sw, fnkt;
;
mov word ptr [bp-30],1
mov word ptr [bp-32],1
mov word ptr [bp-38],1
;
; float p_wert;
; char taste;
;
; if (fopen ("graph.ini", "r") == NULL)//--------------------------------> inidateierzeugung beim fehlen derselben
;
push ds
mov ax,offset s@+10
push ax
push ds
mov ax,offset s@
push ax
call far ptr _fopen
add sp,8
or ax,dx
jne short @1@74
;
; {
; iniStream = fopen ("graph.ini", "w");
;
push ds
mov ax,offset s@+22
push ax
push ds
mov ax,offset s@+12
push ax
call far ptr _fopen
add sp,8
mov word ptr [bp-4],ax
mov word ptr [bp-2],dx
;
; fprintf( iniStream,"10 8 31 0"); //--------------------------------> gesamtsystempositionskorrektur x,y, achsenpositionskorrek
;
push ds
mov ax,offset s@+24
push ax
push word ptr [bp-2]
push word ptr [bp-4]
call far ptr _fprintf
add sp,8
;
; fclose( iniStream );
;
push word ptr [bp-2]
push word ptr [bp-4]
call far ptr _fclose
add sp,4
@1@74:
;
; }
; iniStream = fopen( "graph.ini", "r" );
;
push ds
mov ax,offset s@+44
push ax
push ds
mov ax,offset s@+34
push ax
call far ptr _fopen
add sp,8
mov word ptr [bp-4],ax
mov word ptr [bp-2],dx
;
; fscanf(iniStream,"%i%i%i%i", &syst_x, &syst_y, &x_achse, &y_achse);
;
push ss
lea ax,word ptr [bp-18]
push ax
push ss
lea ax,word ptr [bp-16]
push ax
push ss
lea ax,word ptr [bp-14]
push ax
push ss
lea ax,word ptr [bp-12]
push ax
push ds
mov ax,offset s@+46
push ax
push word ptr [bp-2]
push word ptr [bp-4]
call far ptr _fscanf
add sp,24
;
; fclose( iniStream );
;
push word ptr [bp-2]
push word ptr [bp-4]
call far ptr _fclose
add sp,4
;
;
; if (fopen ("xy_vekt.asc", "r") != NULL)//------------------------------> xy_vektor einlesen
;
push ds
mov ax,offset s@+67
push ax
push ds
mov ax,offset s@+55
push ax
call far ptr _fopen
add sp,8
or ax,dx
je short @1@218
;
; {
; inStream = fopen ("xy_vekt.asc", "r");
;
push ds
mov ax,offset s@+81
push ax
push ds
mov ax,offset s@+69
push ax
call far ptr _fopen
add sp,8
mov word ptr [bp-8],ax
mov word ptr [bp-6],dx
;
; for(iLauf=1; iLauf<=60; iLauf++) fscanf( inStream,"%f", &xy_vektor[iLauf]);
;
mov di,1
jmp short @1@170
@1@122:
mov ax,di
shl ax,1
shl ax,1
add ax,offset _xy_vektor
push ds
push ax
push ds
mov ax,offset s@+83
push ax
push word ptr [bp-6]
push word ptr [bp-8]
call far ptr _fscanf
add sp,12
inc di
@1@170:
cmp di,60
jle short @1@122
;
; fclose( inStream );
;
push word ptr [bp-6]
push word ptr [bp-8]
call far ptr _fclose
add sp,4
@1@218:
;
; }
;
; _setcursortype(_NOCURSOR);//-------------------------------------------> unterdr�ckt cursoranzeige
;
xor ax,ax
push ax
call far ptr __setcursortype
inc sp
inc sp
;
; disp = 7; fn_disp= 15;//-----------------------------------------------> voreinstellungen
;
mov word ptr [bp-20],7
mov word ptr [bp-22],15
;
; y_symb=6; inff_x=2; inff_y=4; fnkt=1;
;
mov si,6
mov word ptr [bp-34],2
mov word ptr [bp-36],4
mov word ptr [bp-42],1
@1@242:
;
;
; while(1)//--------------------------------------------------------------| hauptschleife
; {
; clrscr(); gotoxy(2,2);
;
call far ptr _clrscr
mov ax,2
push ax
mov ax,2
push ax
call far ptr _gotoxy
add sp,4
;
; if(disp < 0) disp = 7;//-------------------------------------------> farbr�ckstellung bei erreichen von 0
;
cmp word ptr [bp-20],0
jge short @1@290
mov word ptr [bp-20],7
@1@290:
;
; textcolor(BLACK);textbackground(disp);
;
xor ax,ax
push ax
call far ptr _textcolor
inc sp
inc sp
push word ptr [bp-20]
call far ptr _textbackground
inc sp
inc sp
;
; cprintf("+: x%i y%i", syst_x+y_achse, syst_y+x_achse);//-----------> koordinatenursprungsmonitor
;
mov ax,word ptr [bp-14]
add ax,word ptr [bp-16]
push ax
mov ax,word ptr [bp-12]
add ax,word ptr [bp-18]
push ax
push ds
mov ax,offset s@+86
push ax
call far ptr _cprintf
add sp,8
;
; cprintf(" xy: x%i y%i", y_achse, 31-x_achse);//-------------------> roh-koordinatenmonitor
;
mov ax,31
sub ax,word ptr [bp-16]
push ax
push word ptr [bp-18]
push ds
mov ax,offset s@+97
push ax
call far ptr _cprintf
add sp,8
;
; if(y_symb != 0)//--------------------------------------------------> F() monitor wenn sich beide achsen im funktionsbereich be
;
or si,si
jne @@0
jmp @1@506
@@0:
;
; {
; if((31-x_achse) > 0 && (31-x_achse) <= 30 && y_achse > 0 && y_achse < 61)
;
mov ax,31
sub ax,word ptr [bp-16]
jg @@1
jmp @1@506
@@1:
mov ax,31
sub ax,word ptr [bp-16]
cmp ax,30
jle @@2
jmp @1@506
@@2:
cmp word ptr [bp-18],0
jle short @1@506
cmp word ptr [bp-18],61
jge short @1@506
;
; {
; if(fnkt == 1)cprintf(" F(x=n): n%i F(n)%.2f", y_achse, xy_vektor[(31-x_achse)*2]); // F(n=x) monitor
;
cmp word ptr [bp-42],1
jne short @1@458
mov bx,31
sub bx,word ptr [bp-16]
shl bx,1
shl bx,1
shl bx,1
FLD dword ptr _xy_vektor[bx]
add sp,65528
FSTP qword ptr [bp-64]
FWAIT
push word ptr [bp-18]
push ds
mov ax,offset s@+111
push ax
call far ptr _cprintf
add sp,14
@1@458:
;
; if(fnkt == -1)cprintf(" F(y=n): n%i F(n)%.2f", 62-(x_achse*2), xy_vektor[(y_achse)]);// F(n=y) monitor
;
cmp word ptr [bp-42],65535
jne short @1@506
mov bx,word ptr [bp-18]
shl bx,1
shl bx,1
FLD dword ptr _xy_vektor[bx]
add sp,65528
FSTP qword ptr [bp-64]
FWAIT
mov ax,word ptr [bp-16]
shl ax,1
mov dx,62
sub dx,ax
push dx
push ds
mov ax,offset s@+134
push ax
call far ptr _cprintf
add sp,14
@1@506:
;
; }
; }
;
; textcolor(DARKGRAY);textbackground(BLACK);cprintf(" ");
;
mov ax,8
push ax
call far ptr _textcolor
inc sp
inc sp
xor ax,ax
push ax
call far ptr _textbackground
inc sp
inc sp
push ds
mov ax,offset s@+157
push ax
call far ptr _cprintf
add sp,4
;
;
; for(iLauf=syst_x; iLauf <=61+syst_x; iLauf++)//--------------------> erzeugung der x-achse
;
mov di,word ptr [bp-12]
jmp short @1@578
@1@530:
;
; {
; gotoxy(iLauf, syst_y+x_achse); cprintf("\xc4");
;
mov ax,word ptr [bp-14]
add ax,word ptr [bp-16]
push ax
push di
call far ptr _gotoxy
add sp,4
push ds
mov ax,offset s@+171
push ax
call far ptr _cprintf
add sp,4
inc di
@1@578:
mov ax,word ptr [bp-12]
add ax,61
cmp ax,di
jge short @1@530
;
; }
; if(fnkt == 1)//---------------------------------------------------> F(x)
;
cmp word ptr [bp-42],1
jne short @1@650
;
; {
; gotoxy(iLauf+1, syst_y+x_achse); cprintf("x=n");//-------------> x achsenbeschriftung
;
mov ax,word ptr [bp-14]
add ax,word ptr [bp-16]
push ax
mov ax,di
inc ax
push ax
call far ptr _gotoxy
add sp,4
push ds
mov ax,offset s@+173
push ax
call far ptr _cprintf
add sp,4
;
; gotoxy(syst_x+y_achse, syst_y-2); cprintf("y=\x9B");//---------> y achsenbeschriftung
;
mov ax,word ptr [bp-14]
add ax,65534
push ax
mov ax,word ptr [bp-12]
add ax,word ptr [bp-18]
push ax
call far ptr _gotoxy
add sp,4
push ds
mov ax,offset s@+177
push ax
call far ptr _cprintf
add sp,4
@1@650:
;
; }
;
; if(fnkt == -1)//--------------------------------------------------> F(y)
;
cmp word ptr [bp-42],65535
jne short @1@698
;
; {
; gotoxy(iLauf+1, syst_y+x_achse); cprintf("x=\x9B");//----------> x achsenbeschriftung
;
mov ax,word ptr [bp-14]
add ax,word ptr [bp-16]
push ax
mov ax,di
inc ax
push ax
call far ptr _gotoxy
add sp,4
push ds
mov ax,offset s@+181
push ax
call far ptr _cprintf
add sp,4
;
; gotoxy(syst_x+y_achse, syst_y-2); cprintf("y=n");//------------> y achsenbeschriftung
;
mov ax,word ptr [bp-14]
add ax,65534
push ax
mov ax,word ptr [bp-12]
add ax,word ptr [bp-18]
push ax
call far ptr _gotoxy
add sp,4
push ds
mov ax,offset s@+185
push ax
call far ptr _cprintf
add sp,4
@1@698:
;
; }
;
; for(iLauf=syst_y; iLauf <=31+syst_y; iLauf++)//--------------------> erzeugung der y-achse
;
mov di,word ptr [bp-14]
jmp short @1@770
@1@722:
;
; {
; gotoxy(syst_x+y_achse, iLauf); cprintf("\xb3");
;
push di
mov ax,word ptr [bp-12]
add ax,word ptr [bp-18]
push ax
call far ptr _gotoxy
add sp,4
push ds
mov ax,offset s@+189
push ax
call far ptr _cprintf
add sp,4
inc di
@1@770:
mov ax,word ptr [bp-14]
add ax,31
cmp ax,di
jge short @1@722
;
; }
;
; gotoxy(syst_x+y_achse, syst_y+x_achse); cprintf("\xc5");//---------> koordinatenursprungserzeugung
;
mov ax,word ptr [bp-14]
add ax,word ptr [bp-16]
push ax
mov ax,word ptr [bp-12]
add ax,word ptr [bp-18]
push ax
call far ptr _gotoxy
add sp,4
push ds
mov ax,offset s@+191
push ax
call far ptr _cprintf
add sp,4
;
;
; if(fn_disp < 1) fn_disp = 15;//------------------------------------> farbr�ckstellung bei erreichen von 1
;
cmp word ptr [bp-22],1
jge short @1@842
mov word ptr [bp-22],15
@1@842:
;
; textcolor(fn_disp);
;
push word ptr [bp-22]
call far ptr _textcolor
inc sp
inc sp
;
;
; if(y_symb != 0)//--------------------------------------------------> Funktionserzeugung F()
;
or si,si
jne @@3
jmp @1@2042
@@3:
;
; {
; index=1;symb_sw=1;
;
mov word ptr [bp-28],1
mov word ptr [bp-40],1
;
; if(y_symb < 0) y_symb = 6;//-----------------------------------> kurvensymbolr�ckstellung bei erreichen von -1
;
or si,si
jge short @1@914
mov si,6
@1@914:
;
;
; if(fnkt == 1)//------------------------------------------------> xy funktionskurvenerzeugung F(x)
;
cmp word ptr [bp-42],1
je @@4
jmp @1@1442
@@4:
;
; {
; for(iLauf=syst_x+1; iLauf <=61-1+syst_x; iLauf++)
;
mov ax,word ptr [bp-12]
inc ax
mov di,ax
jmp @1@1418
@1@962:
;
; {
; //-----------------------------------------------------> y' transformation
; //
; y_wert=((xy_vektor[index]/(xy_vektor[60]/((31-1)*2)))-(xy_vektor[1]/(xy_vektor[60]/((31-1)*2))));index++;
;
mov bx,word ptr [bp-28]
shl bx,1
shl bx,1
FLD dword ptr _xy_vektor[bx]
FLD dword ptr _xy_vektor+240
FDIV dword ptr s@+193
FDIV
FLD dword ptr _xy_vektor+240
FDIV dword ptr s@+193
FDIVR dword ptr _xy_vektor+4
FSUB
call far ptr F_FTOL@
mov word ptr [bp-24],ax
inc word ptr [bp-28]
;
;
; gotoxy(iLauf, 31-1+syst_y-y_wert);
;
mov ax,word ptr [bp-14]
add ax,30
sub ax,word ptr [bp-24]
push ax
push di
call far ptr _gotoxy
add sp,4
;
; if(y_symb == 0) cprintf("-");
;
or si,si
jne short @1@1010
push ds
mov ax,offset s@+197
push ax
call far ptr _cprintf
add sp,4
@1@1010:
;
; if(y_symb == 1) cprintf("\xB0");
;
cmp si,1
jne short @1@1058
push ds
mov ax,offset s@+199
push ax
call far ptr _cprintf
add sp,4
@1@1058:
;
; if(y_symb == 2) cprintf("\xDC");
;
cmp si,2
jne short @1@1106
push ds
mov ax,offset s@+201
push ax
call far ptr _cprintf
add sp,4
@1@1106:
;
; if(y_symb == 3) cprintf("\x2E");
;
cmp si,3
jne short @1@1154
push ds
mov ax,offset s@+203
push ax
call far ptr _cprintf
add sp,4
@1@1154:
;
; if(y_symb == 4) cprintf("\xF7");
;
cmp si,4
jne short @1@1202
push ds
mov ax,offset s@+205
push ax
call far ptr _cprintf
add sp,4
@1@1202:
;
; if(y_symb == 5)
;
cmp si,5
jne short @1@1346
;
; {
; if (symb_sw == 1)cprintf(".");
;
cmp word ptr [bp-40],1
jne short @1@1274
push ds
mov ax,offset s@+207
push ax
call far ptr _cprintf
add sp,4
@1@1274:
;
; if (symb_sw == -1)cprintf("-");
;
cmp word ptr [bp-40],65535
jne short @1@1322
push ds
mov ax,offset s@+209
push ax
call far ptr _cprintf
add sp,4
@1@1322:
;
; symb_sw *=-1;
;
mov dx,65535
mov ax,word ptr [bp-40]
imul dx
mov word ptr [bp-40],ax
@1@1346:
;
; }
; if(y_symb == 6) cprintf(",");
;
cmp si,6
jne short @1@1394
push ds
mov ax,offset s@+211
push ax
call far ptr _cprintf
add sp,4
@1@1394:
inc di
@1@1418:
mov ax,word ptr [bp-12]
add ax,60
cmp ax,di
jl @@5
jmp @1@962
@@5:
@1@1442:
;
; }
; }
;
; if(fnkt == -1)//-----------------------------------------------> yx funktionskurvenerzeugung F(y)
;
cmp word ptr [bp-42],65535
je @@6
jmp @1@2042
@@6:
;
; {
; for(iLauf=syst_y+30; iLauf >= syst_y+1; iLauf--)
;
mov ax,word ptr [bp-14]
add ax,30
mov di,ax
jmp @1@2018
@1@1490:
;
; {
; for(jLauf=1; jLauf <=2; jLauf++)//---------------------> 2maliger plot von y auf x wegen(x'max=2y'max)
;
mov word ptr [bp-10],1
jmp @1@1970
@1@1514:
;
; {
; //-------------------------------------------------> x' transformation
; //
; x_wert=((xy_vektor[index]/(xy_vektor[60]/((61-1)*2)))-(xy_vektor[1]/(xy_vektor[60]/((61-1)*2))));index++;
;
mov bx,word ptr [bp-28]
shl bx,1
shl bx,1
FLD dword ptr _xy_vektor[bx]
FLD dword ptr _xy_vektor+240
FDIV dword ptr s@+213
FDIV
FLD dword ptr _xy_vektor+240
FDIV dword ptr s@+213
FDIVR dword ptr _xy_vektor+4
FSUB
call far ptr F_FTOL@
mov word ptr [bp-26],ax
inc word ptr [bp-28]
;
;
; gotoxy(1+syst_x+x_wert, iLauf);
;
push di
mov ax,word ptr [bp-12]
add ax,word ptr [bp-26]
inc ax
push ax
call far ptr _gotoxy
add sp,4
;
; if(y_symb == 0) cprintf("-");
;
or si,si
jne short @1@1562
push ds
mov ax,offset s@+217
push ax
call far ptr _cprintf
add sp,4
@1@1562:
;
; if(y_symb == 1) cprintf("\xB0");
;
cmp si,1
jne short @1@1610
push ds
mov ax,offset s@+219
push ax
call far ptr _cprintf
add sp,4
@1@1610:
;
; if(y_symb == 2) cprintf("\xDC");
;
cmp si,2
jne short @1@1658
push ds
mov ax,offset s@+221
push ax
call far ptr _cprintf
add sp,4
@1@1658:
;
; if(y_symb == 3) cprintf("\x2E");
;
cmp si,3
jne short @1@1706
push ds
mov ax,offset s@+223
push ax
call far ptr _cprintf
add sp,4
@1@1706:
;
; if(y_symb == 4) cprintf("\xF7");
;
cmp si,4
jne short @1@1754
push ds
mov ax,offset s@+225
push ax
call far ptr _cprintf
add sp,4
@1@1754:
;
; if(y_symb == 6)
;
cmp si,6
jne short @1@1898
;
; {
; if (symb_sw == 1)cprintf(".");
;
cmp word ptr [bp-40],1
jne short @1@1826
push ds
mov ax,offset s@+227
push ax
call far ptr _cprintf
add sp,4
@1@1826:
;
; if (symb_sw == -1)cprintf("-");
;
cmp word ptr [bp-40],65535
jne short @1@1874
push ds
mov ax,offset s@+229
push ax
call far ptr _cprintf
add sp,4
@1@1874:
;
; symb_sw *=-1;
;
mov dx,65535
mov ax,word ptr [bp-40]
imul dx
mov word ptr [bp-40],ax
@1@1898:
;
; }
; if(y_symb == 5) cprintf(",");
;
cmp si,5
jne short @1@1946
push ds
mov ax,offset s@+231
push ax
call far ptr _cprintf
add sp,4
@1@1946:
inc word ptr [bp-10]
@1@1970:
cmp word ptr [bp-10],2
jg @@7
jmp @1@1514
@@7:
dec di
@1@2018:
mov ax,word ptr [bp-14]
inc ax
cmp ax,di
jg @@8
jmp @1@1490
@@8:
@1@2042:
;
; }
; }
; }
; }//F() end
;
; if(init == 1)//----------------------------------------------------> initialfenster
;
cmp word ptr [bp-38],1
jne short @1@2090
;
; {
; textcolor(DARKGRAY);
;
mov ax,8
push ax
call far ptr _textcolor
inc sp
inc sp
;
; gotoxy(45, 48);cprintf("GRAPH01 by Dietmar Schrausser \r\n");//> fenster
;
mov ax,48
push ax
mov ax,45
push ax
call far ptr _gotoxy
add sp,4
push ds
mov ax,offset s@+233
push ax
call far ptr _cprintf
add sp,4
;
; gotoxy(45, 49);cprintf("compiled on %s @ %s", __DATE__, __TIME__);// fenster
;
mov ax,49
push ax
mov ax,45
push ax
call far ptr _gotoxy
add sp,4
push ds
mov ax,offset s@+298
push ax
push ds
mov ax,offset s@+286
push ax
push ds
mov ax,offset s@+266
push ax
call far ptr _cprintf
add sp,12
@1@2090:
;
; }
;
; if(inff == 1)//----------------------------------------------------> infofenster
;
cmp word ptr [bp-30],1
je @@9
jmp @1@2450
@@9:
;
; {
; if(inftyp == 1)//----------------------------------------------> Tastaturbelegung
;
cmp word ptr [bp-32],1
je @@10
jmp @1@2162
@@10:
;
; {
; textcolor(BLACK);textbackground(WHITE);
;
xor ax,ax
push ax
call far ptr _textcolor
inc sp
inc sp
mov ax,15
push ax
call far ptr _textbackground
inc sp
inc sp
;
; gotoxy(inff_x, inff_y);
;
push word ptr [bp-36]
push word ptr [bp-34]
call far ptr _gotoxy
add sp,4
;
; cprintf("Tastaturbelegung: \r\n");
;
push ds
mov ax,offset s@+307
push ax