forked from fysnet/i440fx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.asm
2767 lines (2457 loc) · 93 KB
/
setup.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
comment |*******************************************************************
* Copyright (c) 1984-2024 Forever Young Software Benjamin David Lunt *
* *
* i440FX BIOS ROM v1.0 *
* FILE: setup.asm *
* *
* This code is freeware, not public domain. Please use respectfully. *
* *
* You may: *
* - use this code for learning purposes only. *
* - use this code in your own Operating System development. *
* - distribute any code that you produce pertaining to this code *
* as long as it is for learning purposes only, not for profit, *
* and you give credit where credit is due. *
* *
* You may NOT: *
* - distribute this code for any purpose other than listed above. *
* - distribute this code for profit. *
* *
* You MUST: *
* - include this whole comment block at the top of this file. *
* - include contact information to where the original source is located. *
* https://github.com/fysnet/i440fx *
* *
* DESCRIPTION: *
* setup include file *
* *
* BUILT WITH: NewBasic Assembler *
* http://www.fysnet/newbasic.htm *
* NBASM ver 00.27.14 *
* Command line: nbasm i440fx /z<enter> *
* *
* Last Updated: 8 Dec 2024 *
* *
****************************************************************************
* Notes: *
* - To save space, if the object doesn't use the 'string' or 'resv' *
* members, it doesn't need to declare/allocate space for it since *
* each object is in a linked-list instead of relying on the size *
* of the object to find the next object. *
* *
* - All EDIT_BOXes with associated UP/DOWN objects should have these *
* UP/DOWN objects follow the EDIT_BOX object in UP then DOWN order. *
* This way the code can assume the UP will be the next object and the *
* DOWN will be the object after the UP. *
* *
***************************************************************************|
; red green blue
GUI_BACKGROUND equ ((152 << 16) | (173 << 8) | 214)
GUI_BUTTON_HI equ ((172 << 16) | (193 << 8) | 234)
GUI_BUTTON_LO equ ((132 << 16) | (153 << 8) | 194)
GUI_BUTTON_DARK equ ((102 << 16) | (123 << 8) | 164)
GUI_BUTTON_LIGHT equ ((182 << 16) | (203 << 8) | 244)
GUI_COLOR_FOCUS equ (( 75 << 16) | ( 75 << 8) | 75)
GUI_TEXT_COLOR equ (( 20 << 16) | ( 20 << 8) | 20)
GUI_BOX_BUTTON_UP equ (0 << 0)
GUI_BOX_BUTTON_DN equ (1 << 0)
GUI_BOX_BUTTON_FILL equ (1 << 1)
; object->flags
GUI_EDITBOX_VALUE equ (1 << 0)
GUI_INCBOX_ISDOWN equ (1 << 1)
GUI_OBJECT_VISIBLE equ (1 << 6)
GUI_OBJECT_TABSTOP equ (1 << 7)
.enum GUI_TYPE_NONE, GUI_TYPE_STATIC, GUI_TYPE_CHECKBOX, GUI_TYPE_EDITBOX, \
GUI_TYPE_INCBOX, GUI_TYPE_BUTTON, GUI_TYPE_FRAME
GUI_RECT struct
x_pos word ; x position from left of parent
y_pos word ; y position from top of parent
width word ; width of object
height word ; height of object
GUI_RECT ends
temp_rect ST GUI_RECT
GUI_DATE_TIME struct
year word
month byte
day byte
hour byte
min byte
sec byte
GUI_DATE_TIME ends
gui_date_time ST GUI_DATE_TIME
GUI_OBJ_FLAG_NONE equ 0
GUI_OBJ_FLAG_DO_NEXT equ (1 << 0)
; 64 bytes
GUI_OBJECT struct
parent word ; offset to parent
prev word ; offset to previous object
next word ; offset to next object
event word ; pointer to a function when this object is clicked
draw word ; offset to the draw routine for this object
type byte ; type of object
flags byte ;
; the next four must remain this size and in this order (match GUI_RECT above)
x_pos word ; x position from left of parent
y_pos word ; y position from top of parent
width word ; width of object
height word ; height of object
value dword ; a un/signed value used by this object
value1 dword ; a un/signed value used by this object
string dup 32 ; a string of chars used by this object
resv dup 6 ;
GUI_OBJECT ends
gui_root_object:
dw 0 ; no parent
dw 0 ; no prev
dw offset gui_num_lock ; first object (must not be NULL)
dw 0 ; no event
dw 0 ; no draw routing
db GUI_TYPE_NONE ; the root has no type
db 0 ;
dw 0,0 ; top left = 0,0
dw 0,0 ; width, height
dd 0 ; no value
dd 0 ; no value1
gui_num_lock:
dw offset gui_root_object ; parent = root
dw 0 ; no prev (don't move to the root)
dw offset gui_ehci_legacy ; next item goes here
dw offset gui_checkbox_event
dw offset gui_draw_checkbox
db GUI_TYPE_CHECKBOX ; this is a check box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 25,25 ; top left (x,y)
dw 200,20 ; width, height
dd 0 ; value
dd 0 ; value1
db 'Num-Lock on at bootup',0
gui_ehci_legacy:
dw offset gui_root_object ; parent = root
dw offset gui_num_lock ; previous
dw offset gui_ahci_legacy ; next item goes here
dw offset gui_checkbox_event
dw offset gui_draw_checkbox
db GUI_TYPE_CHECKBOX ; this is a check box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 25,50 ; top left (x,y)
dw 200,20 ; width, height
dd 0 ; value
dd 0 ; value1
db 'Legacy EHCI?',0
gui_ahci_legacy:
dw offset gui_root_object ; parent = root
dw offset gui_ehci_legacy ; previous
dw offset gui_floppy_sig ; next item goes here
dw offset gui_checkbox_event
dw offset gui_draw_checkbox
db GUI_TYPE_CHECKBOX ; this is a check box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 25,75 ; top left (x,y)
dw 200,20 ; width, height
dd 0 ; value
dd 0 ; value1
db 'Legacy AHCI?',0
gui_floppy_sig:
dw offset gui_root_object ; parent = root
dw offset gui_ahci_legacy ; previous
dw offset gui_fast_boot ; next item goes here
dw offset gui_checkbox_event
dw offset gui_draw_checkbox
db GUI_TYPE_CHECKBOX ; this is a check box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 25,100 ; top left (x,y)
dw 200,20 ; width, height
dd 0 ; value
dd 0 ; value1
db 'Floppy Sig Check',0
gui_fast_boot:
dw offset gui_root_object ; parent = root
dw offset gui_floppy_sig ; previous
dw offset gui_cmos_date_str ; next item goes here
dw offset gui_checkbox_event
dw offset gui_draw_checkbox
db GUI_TYPE_CHECKBOX ; this is a check box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 25,125 ; top left (x,y)
dw 200,20 ; width, height
dd 0 ; value
dd 0 ; value1
db 'Fast Boot',0
gui_cmos_date_str:
dw offset gui_root_object ; parent = root
dw offset gui_fast_boot ; previous
dw offset gui_cmos_month ; next item goes here
dw 0 ; no event
dw offset gui_draw_static
db GUI_TYPE_STATIC ; this is an edit box
db GUI_OBJECT_VISIBLE ;
dw 15,154 ; top left (x,y)
dw 144,20 ; width, height
dd 0 ; value
dd 0 ; value1
db 'Date: (MM:DD:YYYY)',0
gui_cmos_month:
dw offset gui_root_object ; parent = root
dw offset gui_cmos_date_str ; previous
dw offset gui_cmos_month_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db (GUI_OBJECT_VISIBLE | GUI_EDITBOX_VALUE) ; use the 'value' field to fill the box
dw 170,150 ; top left (x,y)
dw 30,20 ; width, height
dd 0 ; value
dd 0 ; value1
dup 32,0 ; save room for the string to print
gui_cmos_month_up:
dw offset gui_cmos_month ; parent = month
dw offset gui_cmos_month ; previous
dw offset gui_cmos_month_down ; next item goes here
dw offset gui_button_up_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.month ; value
dw sizeof(byte)
dd 12 ; limit
gui_cmos_month_down:
dw offset gui_cmos_month ; parent = month
dw offset gui_cmos_month_up ; previous
dw offset gui_cmos_days ; next item goes here
dw offset gui_button_dn_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.month ; value
dw sizeof(byte)
dd 1 ; limit
gui_cmos_days:
dw offset gui_root_object ; parent = root
dw offset gui_cmos_month_down ; previous
dw offset gui_cmos_days_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db (GUI_OBJECT_VISIBLE | GUI_EDITBOX_VALUE) ; use the 'value' field to fill the box
dw 215,150 ; top left (x,y)
dw 30,20 ; width, height
dd 0 ; value
dd 0 ; value1
dup 32,0 ; save room for the string to print
gui_cmos_days_up:
dw offset gui_cmos_days ; parent = days
dw offset gui_cmos_days ; previous
dw offset gui_cmos_days_down ; next item goes here
dw offset gui_button_up_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.day ; value
dw sizeof(byte)
dd 31 ; limit (adjusted by 'gui_button_up_event' call)
gui_cmos_days_down:
dw offset gui_cmos_days ; parent = mins
dw offset gui_cmos_days_up ; previous
dw offset gui_cmos_year ; next item goes here
dw offset gui_button_dn_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.day ; value
dw sizeof(byte)
dd 1 ; limit
gui_cmos_year:
dw offset gui_root_object ; parent = root
dw offset gui_cmos_days_down ; previous
dw offset gui_cmos_year_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db (GUI_OBJECT_VISIBLE | GUI_EDITBOX_VALUE) ; use the 'value' field to fill the box
dw 260,150 ; top left (x,y)
dw 50,20 ; width, height
dd 0 ; value
dd 0 ; value1
dup 32,0 ; save room for the string to print
gui_cmos_year_up:
dw offset gui_cmos_year ; parent = year
dw offset gui_cmos_year ; previous
dw offset gui_cmos_year_down ; next item goes here
dw offset gui_button_up_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.year ; value
dw sizeof(word)
dd 9999 ; limit
gui_cmos_year_down:
dw offset gui_cmos_year ; parent = secs
dw offset gui_cmos_year_up ; previous
dw offset gui_cmos_time_str ; next item goes here
dw offset gui_button_dn_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.year ; value
dw sizeof(word)
dd 2000 ; limit
gui_cmos_time_str:
dw offset gui_root_object ; parent = root
dw offset gui_cmos_year_down ; previous
dw offset gui_cmos_hours ; next item goes here
dw 0 ; no event
dw offset gui_draw_static
db GUI_TYPE_STATIC ; this is an edit box
db GUI_OBJECT_VISIBLE ; flags
dw 15,179 ; top left (x,y)
dw 144,20 ; width, height
dd 0 ; value
dd 0 ; value1
db ' Time: (HH:MM:SS)',0
gui_cmos_hours:
dw offset gui_root_object ; parent = root
dw offset gui_cmos_time_str ; previous
dw offset gui_cmos_hours_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db (GUI_OBJECT_VISIBLE | GUI_EDITBOX_VALUE) ; use the 'value' field to fill the box
dw 170,175 ; top left (x,y)
dw 30,20 ; width, height
dd 0 ; value
dd 0 ; value1
dup 32,0 ; save room for the string to print
gui_cmos_hours_up:
dw offset gui_cmos_hours ; parent = hours
dw offset gui_cmos_hours ; previous
dw offset gui_cmos_hours_down ; next item goes here
dw offset gui_button_up_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.hour ; value
dw sizeof(byte)
dd 23 ; limit
gui_cmos_hours_down:
dw offset gui_cmos_hours ; parent = hours
dw offset gui_cmos_hours_up ; previous
dw offset gui_cmos_mins ; next item goes here
dw offset gui_button_dn_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.hour ; value
dw sizeof(byte)
dd 0 ; limit
gui_cmos_mins:
dw offset gui_root_object ; parent = root
dw offset gui_cmos_hours_down ; previous
dw offset gui_cmos_mins_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db (GUI_OBJECT_VISIBLE | GUI_EDITBOX_VALUE) ; use the 'value' field to fill the box
dw 215,175 ; top left (x,y)
dw 30,20 ; width, height
dd 0 ; value
dd 0 ; value1
dup 32,0 ; save room for the string to print
gui_cmos_mins_up:
dw offset gui_cmos_mins ; parent = mins
dw offset gui_cmos_mins ; previous
dw offset gui_cmos_mins_down ; next item goes here
dw offset gui_button_up_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.min ; value
dw sizeof(byte)
dd 59 ; limit
gui_cmos_mins_down:
dw offset gui_cmos_mins ; parent = mins
dw offset gui_cmos_mins_up ; previous
dw offset gui_cmos_secs ; next item goes here
dw offset gui_button_dn_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.min ; value
dw sizeof(byte)
dd 0 ; limit
gui_cmos_secs:
dw offset gui_root_object ; parent = root
dw offset gui_cmos_mins_down ; previous
dw offset gui_cmos_secs_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db (GUI_OBJECT_VISIBLE | GUI_EDITBOX_VALUE) ; use the 'value' field to fill the box
dw 260,175 ; top left (x,y)
dw 30,20 ; width, height
dd 0 ; value
dd 0 ; value1
dup 32,0 ; save room for the string to print
gui_cmos_secs_up:
dw offset gui_cmos_secs ; parent = secs
dw offset gui_cmos_secs ; previous
dw offset gui_cmos_secs_down ; next item goes here
dw offset gui_button_up_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.sec ; value
dw sizeof(byte)
dd 59 ; limit
gui_cmos_secs_down:
dw offset gui_cmos_secs ; parent = secs
dw offset gui_cmos_secs_up ; previous
dw offset gui_floppy0_type_str ; next item goes here
dw offset gui_button_dn_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dw offset gui_date_time.sec ; value
dw sizeof(byte)
dd 0 ; limit
gui_floppy0_type_str:
dw offset gui_root_object ; parent = root
dw offset gui_cmos_secs_down ; previous
dw offset gui_floppy0_type ; next item goes here
dw 0 ; no event
dw offset gui_draw_static
db GUI_TYPE_STATIC ; this is an edit box
db GUI_OBJECT_VISIBLE ; flags
dw 54,204 ; top left (x,y)
dw 105,20 ; width, height
dd 0 ; value
dd 0 ; value1
db 'Floppy0 type:',0
gui_floppy0_type:
dw offset gui_root_object ; parent = root
dw offset gui_floppy0_type_str ; previous
dw offset gui_floppy0_type_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 170,200 ; top left (x,y)
dw 100,20 ; width, height
dd 0 ; value
dd 0 ; value1
dup 32,0 ; save room for the string to print
gui_floppy0_type_up:
dw offset gui_floppy0_type ; parent = floppy0 type
dw offset gui_floppy0_type ; previous
dw offset gui_floppy0_type_down ; next item goes here
dw offset gui_floppy_up_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_floppy0_type_down:
dw offset gui_floppy0_type ; parent = floppy0 type
dw offset gui_floppy0_type_up ; previous
dw offset gui_floppy1_type_str ; next item goes here
dw offset gui_floppy_dn_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_floppy1_type_str:
dw offset gui_root_object ; parent = root
dw offset gui_floppy0_type_down ; previous
dw offset gui_floppy1_type ; next item goes here
dw 0 ; no event
dw offset gui_draw_static
db GUI_TYPE_STATIC ; this is an edit box
db GUI_OBJECT_VISIBLE ; flags
dw 54,229 ; top left (x,y)
dw 105,20 ; width, height
dd 0 ; value
dd 0 ; value1
db 'Floppy1 type:',0
gui_floppy1_type:
dw offset gui_root_object ; parent = root
dw offset gui_floppy1_type_str ; previous
dw offset gui_floppy1_type_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 170,225 ; top left (x,y)
dw 100,20 ; width, height
dd 0 ; value
dd 0 ; value1
dup 32,0 ; save room for the string to print
gui_floppy1_type_up:
dw offset gui_floppy1_type ; parent = floppy1 type
dw offset gui_floppy1_type ; previous
dw offset gui_floppy1_type_down ; next item goes here
dw offset gui_floppy_up_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_floppy1_type_down:
dw offset gui_floppy1_type ; parent = floppy1 type
dw offset gui_floppy1_type_up ; previous
dw offset gui_ipl_list_box ; next item goes here
dw offset gui_floppy_dn_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_list_box:
dw offset gui_root_object ; parent = root
dw offset gui_floppy1_type_down ; previous
dw offset gui_ipl_entry0 ; next item goes here
dw 0 ;
dw offset gui_draw_frame
db GUI_TYPE_FRAME ; this is a frame box
db GUI_OBJECT_VISIBLE ; flags
dw 350,25 ; top left (x,y)
dw 282,220 ; width, height
dd 0 ; value
dd 0 ; value1
db 'IPL entries',0
; IPL entries (up to IPL_TABLE_ENTRY_CNT currently we only have 8)
gui_ipl_entry0:
dw offset gui_root_object ; parent = root
dw offset gui_ipl_list_box ; previous
dw offset gui_ipl_entry0_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 360,40 ; top left (x,y)
dw 250,20 ; width, height
dd 0 ; index 0 in the ipl list (changes with up/down)
dd 0 ; index 0 in the list
dup 32,0 ; save room for the string to print
gui_ipl_entry0_up:
dw offset gui_ipl_entry0 ; parent = ipl_entry0
dw offset gui_ipl_entry0 ; previous
dw offset gui_ipl_entry0_down ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry0_down:
dw offset gui_ipl_entry0 ; parent = ipl_entry0
dw offset gui_ipl_entry0_up ; previous
dw offset gui_ipl_entry1 ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry1:
dw offset gui_root_object ; parent = root
dw offset gui_ipl_entry0_down ; previous
dw offset gui_ipl_entry1_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 360,65 ; top left (x,y)
dw 250,20 ; width, height
dd 1 ; index 1 in the ipl list (changes with up/down)
dd 1 ; index 1 in the list
dup 32,0 ; save room for the string to print
gui_ipl_entry1_up:
dw offset gui_ipl_entry1 ; parent = ipl_entry0
dw offset gui_ipl_entry1 ; previous
dw offset gui_ipl_entry1_down ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry1_down:
dw offset gui_ipl_entry1 ; parent = ipl_entry0
dw offset gui_ipl_entry1_up ; previous
dw offset gui_ipl_entry2 ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry2:
dw offset gui_root_object ; parent = root
dw offset gui_ipl_entry1_down ; previous
dw offset gui_ipl_entry2_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 360,90 ; top left (x,y)
dw 250,20 ; width, height
dd 2 ; index 2 in the ipl list (changes with up/down)
dd 2 ; index 2 in the list
dup 32,0 ; save room for the string to print
gui_ipl_entry2_up:
dw offset gui_ipl_entry2 ; parent = ipl_entry0
dw offset gui_ipl_entry2 ; previous
dw offset gui_ipl_entry2_down ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry2_down:
dw offset gui_ipl_entry2 ; parent = ipl_entry0
dw offset gui_ipl_entry2_up ; previous
dw offset gui_ipl_entry3 ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry3:
dw offset gui_root_object ; parent = root
dw offset gui_ipl_entry2_down ; previous
dw offset gui_ipl_entry3_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 360,115 ; top left (x,y)
dw 250,20 ; width, height
dd 3 ; index 3 in the ipl list (changes with up/down)
dd 3 ; index 3 in the list
dup 32,0 ; save room for the string to print
gui_ipl_entry3_up:
dw offset gui_ipl_entry3 ; parent = ipl_entry0
dw offset gui_ipl_entry3 ; previous
dw offset gui_ipl_entry3_down ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry3_down:
dw offset gui_ipl_entry3 ; parent = ipl_entry0
dw offset gui_ipl_entry3_up ; previous
dw offset gui_ipl_entry4 ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry4:
dw offset gui_root_object ; parent = root
dw offset gui_ipl_entry3_down ; previous
dw offset gui_ipl_entry4_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 360,140 ; top left (x,y)
dw 250,20 ; width, height
dd 4 ; index 4 in the ipl list (changes with up/down)
dd 4 ; index 4 in the list
dup 32,0 ; save room for the string to print
gui_ipl_entry4_up:
dw offset gui_ipl_entry4 ; parent = ipl_entry0
dw offset gui_ipl_entry4 ; previous
dw offset gui_ipl_entry4_down ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry4_down:
dw offset gui_ipl_entry4 ; parent = ipl_entry0
dw offset gui_ipl_entry4_up ; previous
dw offset gui_ipl_entry5 ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry5:
dw offset gui_root_object ; parent = root
dw offset gui_ipl_entry4_down ; previous
dw offset gui_ipl_entry5_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 360,165 ; top left (x,y)
dw 250,20 ; width, height
dd 5 ; index 5 in the ipl list (changes with up/down)
dd 5 ; index 5 in the list
dup 32,0 ; save room for the string to print
gui_ipl_entry5_up:
dw offset gui_ipl_entry5 ; parent = ipl_entry0
dw offset gui_ipl_entry5 ; previous
dw offset gui_ipl_entry5_down ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry5_down:
dw offset gui_ipl_entry5 ; parent = ipl_entry0
dw offset gui_ipl_entry5_up ; previous
dw offset gui_ipl_entry6 ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry6:
dw offset gui_root_object ; parent = root
dw offset gui_ipl_entry5_down ; previous
dw offset gui_ipl_entry6_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 360,190 ; top left (x,y)
dw 250,20 ; width, height
dd 6 ; index 6 in the ipl list (changes with up/down)
dd 6 ; index 6 in the list
dup 32,0 ; save room for the string to print
gui_ipl_entry6_up:
dw offset gui_ipl_entry6 ; parent = ipl_entry0
dw offset gui_ipl_entry6 ; previous
dw offset gui_ipl_entry6_down ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry6_down:
dw offset gui_ipl_entry6 ; parent = ipl_entry0
dw offset gui_ipl_entry6_up ; previous
dw offset gui_ipl_entry7 ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry7:
dw offset gui_root_object ; parent = root
dw offset gui_ipl_entry6_down ; previous
dw offset gui_ipl_entry7_up ; next item goes here
dw 0 ; no event
dw offset gui_draw_editbox
db GUI_TYPE_EDITBOX ; this is an edit box
db GUI_OBJECT_VISIBLE ; use the 'string' field to fill the box
dw 360,215 ; top left (x,y)
dw 250,20 ; width, height
dd 7 ; index 7 in the ipl list (changes with up/down)
dd 7 ; index 7 in the list
dup 32,0 ; save room for the string to print
gui_ipl_entry7_up:
dw offset gui_ipl_entry7 ; parent = ipl_entry0
dw offset gui_ipl_entry7 ; previous
dw offset gui_ipl_entry7_down ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_ipl_entry7_down:
dw offset gui_ipl_entry7 ; parent = ipl_entry0
dw offset gui_ipl_entry7_up ; previous
dw offset gui_button_exit ; next item goes here
dw offset gui_ipl_entry_event
dw offset gui_draw_incbox
db GUI_TYPE_INCBOX ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE | GUI_INCBOX_ISDOWN) ; flags
dw 0,0 ; top left (x,y) (draw routine gets location from parent)
dw 10,10 ; width, height
dd 0 ; value
dd 0 ; limit
gui_button_exit:
dw offset gui_root_object ; parent = root
dw offset gui_ipl_entry7_down ; previous
dw offset gui_button_apply ; next item goes here
dw offset gui_object_exit
dw offset gui_draw_button
db GUI_TYPE_BUTTON ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (we calculate these later)
dw 80,25 ; width, height
dd 0 ; value
dd 0 ; value1
db ' Exit',0
gui_button_apply:
dw offset gui_root_object ; parent = root
dw offset gui_button_exit ; previous
dw 0 ; next item goes here
dw offset gui_object_apply
dw offset gui_draw_button
db GUI_TYPE_BUTTON ; this is an inc box
db (GUI_OBJECT_TABSTOP | GUI_OBJECT_VISIBLE) ; flags
dw 0,0 ; top left (x,y) (we calculate these later)
dw 80,25 ; width, height
dd 0 ; value
dd 0 ; value1
db ' Apply',0
cmos_reg_b db 0
current_focus dw offset gui_num_lock
mouse_found db 0
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
; this is our main 'setup' app entry point
; on entry:
; es = EBDA
; fs = flat selected with base = 0, limit = max
; on return
; nothing
; destroys nothing
bios_setup proc far
; make sure we are in the graphics mode
cmp byte es:[EBDA_DATA->video_use_graphic],0
jne short @f
;; for now, just return
retf
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
; from this point on, we don't return
@@: mov ax,BIOS_BASE2
mov ds,ax
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
; make sure the cmos is in binary mode and 24-hour mode
mov al,0Bh
out PORT_CMOS_INDEX,al
in al,PORT_CMOS_DATA
mov cmos_reg_b,al
or al,((1<<2) | (1<<1))
out PORT_CMOS_DATA,al
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
; initialize the objects
; (we don't call 'bios_read_escd' because it is a near function)
mov bx,offset escd
mov al,[bx+ESCD_DATA->num_lock]
mov [gui_num_lock+GUI_OBJECT->value],al
mov al,[bx+ESCD_DATA->ehci_legacy]
mov [gui_ehci_legacy+GUI_OBJECT->value],al
mov al,[bx+ESCD_DATA->ahci_legacy]
mov [gui_ahci_legacy+GUI_OBJECT->value],al
; floppy signature check
mov al,0x38
out PORT_CMOS_INDEX,al
in al,PORT_CMOS_DATA
and al,1
mov [gui_floppy_sig+GUI_OBJECT->value],al