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
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - Byte pin registers for all port GPIO pins"]
    pub b0_0: B0_0,
    #[doc = "0x01 - Byte pin registers for all port GPIO pins"]
    pub b0_1: B0_1,
    #[doc = "0x02 - Byte pin registers for all port GPIO pins"]
    pub b0_2: B0_2,
    #[doc = "0x03 - Byte pin registers for all port GPIO pins"]
    pub b0_3: B0_3,
    #[doc = "0x04 - Byte pin registers for all port GPIO pins"]
    pub b0_4: B0_4,
    #[doc = "0x05 - Byte pin registers for all port GPIO pins"]
    pub b0_5: B0_5,
    #[doc = "0x06 - Byte pin registers for all port GPIO pins"]
    pub b0_6: B0_6,
    #[doc = "0x07 - Byte pin registers for all port GPIO pins"]
    pub b0_7: B0_7,
    #[doc = "0x08 - Byte pin registers for all port GPIO pins"]
    pub b0_8: B0_8,
    #[doc = "0x09 - Byte pin registers for all port GPIO pins"]
    pub b0_9: B0_9,
    #[doc = "0x0a - Byte pin registers for all port GPIO pins"]
    pub b0_10: B0_10,
    #[doc = "0x0b - Byte pin registers for all port GPIO pins"]
    pub b0_11: B0_11,
    #[doc = "0x0c - Byte pin registers for all port GPIO pins"]
    pub b0_12: B0_12,
    #[doc = "0x0d - Byte pin registers for all port GPIO pins"]
    pub b0_13: B0_13,
    #[doc = "0x0e - Byte pin registers for all port GPIO pins"]
    pub b0_14: B0_14,
    #[doc = "0x0f - Byte pin registers for all port GPIO pins"]
    pub b0_15: B0_15,
    #[doc = "0x10 - Byte pin registers for all port GPIO pins"]
    pub b0_16: B0_16,
    #[doc = "0x11 - Byte pin registers for all port GPIO pins"]
    pub b0_17: B0_17,
    #[doc = "0x12 - Byte pin registers for all port GPIO pins"]
    pub b0_18: B0_18,
    #[doc = "0x13 - Byte pin registers for all port GPIO pins"]
    pub b0_19: B0_19,
    #[doc = "0x14 - Byte pin registers for all port GPIO pins"]
    pub b0_20: B0_20,
    #[doc = "0x15 - Byte pin registers for all port GPIO pins"]
    pub b0_21: B0_21,
    #[doc = "0x16 - Byte pin registers for all port GPIO pins"]
    pub b0_22: B0_22,
    #[doc = "0x17 - Byte pin registers for all port GPIO pins"]
    pub b0_23: B0_23,
    #[doc = "0x18 - Byte pin registers for all port GPIO pins"]
    pub b0_24: B0_24,
    #[doc = "0x19 - Byte pin registers for all port GPIO pins"]
    pub b0_25: B0_25,
    #[doc = "0x1a - Byte pin registers for all port GPIO pins"]
    pub b0_26: B0_26,
    #[doc = "0x1b - Byte pin registers for all port GPIO pins"]
    pub b0_27: B0_27,
    #[doc = "0x1c - Byte pin registers for all port GPIO pins"]
    pub b0_28: B0_28,
    #[doc = "0x1d - Byte pin registers for all port GPIO pins"]
    pub b0_29: B0_29,
    #[doc = "0x1e - Byte pin registers for all port GPIO pins"]
    pub b0_30: B0_30,
    #[doc = "0x1f - Byte pin registers for all port GPIO pins"]
    pub b0_31: B0_31,
    _reserved32: [u8; 4064usize],
    #[doc = "0x1000 - Word pin registers for all port GPIO pins"]
    pub w0_0: W0_0,
    #[doc = "0x1004 - Word pin registers for all port GPIO pins"]
    pub w0_1: W0_1,
    #[doc = "0x1008 - Word pin registers for all port GPIO pins"]
    pub w0_2: W0_2,
    #[doc = "0x100c - Word pin registers for all port GPIO pins"]
    pub w0_3: W0_3,
    #[doc = "0x1010 - Word pin registers for all port GPIO pins"]
    pub w0_4: W0_4,
    #[doc = "0x1014 - Word pin registers for all port GPIO pins"]
    pub w0_5: W0_5,
    #[doc = "0x1018 - Word pin registers for all port GPIO pins"]
    pub w0_6: W0_6,
    #[doc = "0x101c - Word pin registers for all port GPIO pins"]
    pub w0_7: W0_7,
    #[doc = "0x1020 - Word pin registers for all port GPIO pins"]
    pub w0_8: W0_8,
    #[doc = "0x1024 - Word pin registers for all port GPIO pins"]
    pub w0_9: W0_9,
    #[doc = "0x1028 - Word pin registers for all port GPIO pins"]
    pub w0_10: W0_10,
    #[doc = "0x102c - Word pin registers for all port GPIO pins"]
    pub w0_11: W0_11,
    #[doc = "0x1030 - Word pin registers for all port GPIO pins"]
    pub w0_12: W0_12,
    #[doc = "0x1034 - Word pin registers for all port GPIO pins"]
    pub w0_13: W0_13,
    #[doc = "0x1038 - Word pin registers for all port GPIO pins"]
    pub w0_14: W0_14,
    #[doc = "0x103c - Word pin registers for all port GPIO pins"]
    pub w0_15: W0_15,
    #[doc = "0x1040 - Word pin registers for all port GPIO pins"]
    pub w0_16: W0_16,
    #[doc = "0x1044 - Word pin registers for all port GPIO pins"]
    pub w0_17: W0_17,
    #[doc = "0x1048 - Word pin registers for all port GPIO pins"]
    pub w0_18: W0_18,
    #[doc = "0x104c - Word pin registers for all port GPIO pins"]
    pub w0_19: W0_19,
    #[doc = "0x1050 - Word pin registers for all port GPIO pins"]
    pub w0_20: W0_20,
    #[doc = "0x1054 - Word pin registers for all port GPIO pins"]
    pub w0_21: W0_21,
    #[doc = "0x1058 - Word pin registers for all port GPIO pins"]
    pub w0_22: W0_22,
    #[doc = "0x105c - Word pin registers for all port GPIO pins"]
    pub w0_23: W0_23,
    #[doc = "0x1060 - Word pin registers for all port GPIO pins"]
    pub w0_24: W0_24,
    #[doc = "0x1064 - Word pin registers for all port GPIO pins"]
    pub w0_25: W0_25,
    #[doc = "0x1068 - Word pin registers for all port GPIO pins"]
    pub w0_26: W0_26,
    #[doc = "0x106c - Word pin registers for all port GPIO pins"]
    pub w0_27: W0_27,
    #[doc = "0x1070 - Word pin registers for all port GPIO pins"]
    pub w0_28: W0_28,
    #[doc = "0x1074 - Word pin registers for all port GPIO pins"]
    pub w0_29: W0_29,
    #[doc = "0x1078 - Word pin registers for all port GPIO pins"]
    pub w0_30: W0_30,
    #[doc = "0x107c - Word pin registers for all port GPIO pins"]
    pub w0_31: W0_31,
    _reserved64: [u8; 3968usize],
    #[doc = "0x2000 - Direction registers for all port GPIO pins"]
    pub dir0: DIR0,
    _reserved65: [u8; 124usize],
    #[doc = "0x2080 - Mask register for all port GPIO pins"]
    pub mask0: MASK0,
    _reserved66: [u8; 124usize],
    #[doc = "0x2100 - Port pin register for all port GPIO pins"]
    pub pin0: PIN0,
    _reserved67: [u8; 124usize],
    #[doc = "0x2180 - Masked port register for all port GPIO pins"]
    pub mpin0: MPIN0,
    _reserved68: [u8; 124usize],
    #[doc = "0x2200 - Write: Set register for port. Read: output bits for port"]
    pub set0: SET0,
    _reserved69: [u8; 124usize],
    #[doc = "0x2280 - Clear port for all port GPIO pins"]
    pub clr0: CLR0,
    _reserved70: [u8; 124usize],
    #[doc = "0x2300 - Toggle port for all port GPIO pins"]
    pub not0: NOT0,
    _reserved71: [u8; 124usize],
    #[doc = "0x2380 - Set pin direction bits for port"]
    pub dirset0: DIRSET0,
    _reserved72: [u8; 124usize],
    #[doc = "0x2400 - Clear pin direction bits for port"]
    pub dirclr0: DIRCLR0,
    _reserved73: [u8; 124usize],
    #[doc = "0x2480 - Toggle pin direction bits for port"]
    pub dirnot0: DIRNOT0,
}
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_0](b0_0) module"]
pub type B0_0 = crate::Reg<u8, _B0_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_0;
#[doc = "`read()` method returns [b0_0::R](b0_0::R) reader structure"]
impl crate::Readable for B0_0 {}
#[doc = "`write(|w| ..)` method takes [b0_0::W](b0_0::W) writer structure"]
impl crate::Writable for B0_0 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_0;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_1](b0_1) module"]
pub type B0_1 = crate::Reg<u8, _B0_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_1;
#[doc = "`read()` method returns [b0_1::R](b0_1::R) reader structure"]
impl crate::Readable for B0_1 {}
#[doc = "`write(|w| ..)` method takes [b0_1::W](b0_1::W) writer structure"]
impl crate::Writable for B0_1 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_1;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_2](b0_2) module"]
pub type B0_2 = crate::Reg<u8, _B0_2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_2;
#[doc = "`read()` method returns [b0_2::R](b0_2::R) reader structure"]
impl crate::Readable for B0_2 {}
#[doc = "`write(|w| ..)` method takes [b0_2::W](b0_2::W) writer structure"]
impl crate::Writable for B0_2 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_2;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_3](b0_3) module"]
pub type B0_3 = crate::Reg<u8, _B0_3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_3;
#[doc = "`read()` method returns [b0_3::R](b0_3::R) reader structure"]
impl crate::Readable for B0_3 {}
#[doc = "`write(|w| ..)` method takes [b0_3::W](b0_3::W) writer structure"]
impl crate::Writable for B0_3 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_3;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_4](b0_4) module"]
pub type B0_4 = crate::Reg<u8, _B0_4>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_4;
#[doc = "`read()` method returns [b0_4::R](b0_4::R) reader structure"]
impl crate::Readable for B0_4 {}
#[doc = "`write(|w| ..)` method takes [b0_4::W](b0_4::W) writer structure"]
impl crate::Writable for B0_4 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_4;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_5](b0_5) module"]
pub type B0_5 = crate::Reg<u8, _B0_5>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_5;
#[doc = "`read()` method returns [b0_5::R](b0_5::R) reader structure"]
impl crate::Readable for B0_5 {}
#[doc = "`write(|w| ..)` method takes [b0_5::W](b0_5::W) writer structure"]
impl crate::Writable for B0_5 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_5;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_6](b0_6) module"]
pub type B0_6 = crate::Reg<u8, _B0_6>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_6;
#[doc = "`read()` method returns [b0_6::R](b0_6::R) reader structure"]
impl crate::Readable for B0_6 {}
#[doc = "`write(|w| ..)` method takes [b0_6::W](b0_6::W) writer structure"]
impl crate::Writable for B0_6 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_6;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_7](b0_7) module"]
pub type B0_7 = crate::Reg<u8, _B0_7>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_7;
#[doc = "`read()` method returns [b0_7::R](b0_7::R) reader structure"]
impl crate::Readable for B0_7 {}
#[doc = "`write(|w| ..)` method takes [b0_7::W](b0_7::W) writer structure"]
impl crate::Writable for B0_7 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_7;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_8](b0_8) module"]
pub type B0_8 = crate::Reg<u8, _B0_8>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_8;
#[doc = "`read()` method returns [b0_8::R](b0_8::R) reader structure"]
impl crate::Readable for B0_8 {}
#[doc = "`write(|w| ..)` method takes [b0_8::W](b0_8::W) writer structure"]
impl crate::Writable for B0_8 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_8;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_9](b0_9) module"]
pub type B0_9 = crate::Reg<u8, _B0_9>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_9;
#[doc = "`read()` method returns [b0_9::R](b0_9::R) reader structure"]
impl crate::Readable for B0_9 {}
#[doc = "`write(|w| ..)` method takes [b0_9::W](b0_9::W) writer structure"]
impl crate::Writable for B0_9 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_9;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_10](b0_10) module"]
pub type B0_10 = crate::Reg<u8, _B0_10>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_10;
#[doc = "`read()` method returns [b0_10::R](b0_10::R) reader structure"]
impl crate::Readable for B0_10 {}
#[doc = "`write(|w| ..)` method takes [b0_10::W](b0_10::W) writer structure"]
impl crate::Writable for B0_10 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_10;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_11](b0_11) module"]
pub type B0_11 = crate::Reg<u8, _B0_11>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_11;
#[doc = "`read()` method returns [b0_11::R](b0_11::R) reader structure"]
impl crate::Readable for B0_11 {}
#[doc = "`write(|w| ..)` method takes [b0_11::W](b0_11::W) writer structure"]
impl crate::Writable for B0_11 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_11;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_12](b0_12) module"]
pub type B0_12 = crate::Reg<u8, _B0_12>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_12;
#[doc = "`read()` method returns [b0_12::R](b0_12::R) reader structure"]
impl crate::Readable for B0_12 {}
#[doc = "`write(|w| ..)` method takes [b0_12::W](b0_12::W) writer structure"]
impl crate::Writable for B0_12 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_12;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_13](b0_13) module"]
pub type B0_13 = crate::Reg<u8, _B0_13>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_13;
#[doc = "`read()` method returns [b0_13::R](b0_13::R) reader structure"]
impl crate::Readable for B0_13 {}
#[doc = "`write(|w| ..)` method takes [b0_13::W](b0_13::W) writer structure"]
impl crate::Writable for B0_13 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_13;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_14](b0_14) module"]
pub type B0_14 = crate::Reg<u8, _B0_14>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_14;
#[doc = "`read()` method returns [b0_14::R](b0_14::R) reader structure"]
impl crate::Readable for B0_14 {}
#[doc = "`write(|w| ..)` method takes [b0_14::W](b0_14::W) writer structure"]
impl crate::Writable for B0_14 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_14;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_15](b0_15) module"]
pub type B0_15 = crate::Reg<u8, _B0_15>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_15;
#[doc = "`read()` method returns [b0_15::R](b0_15::R) reader structure"]
impl crate::Readable for B0_15 {}
#[doc = "`write(|w| ..)` method takes [b0_15::W](b0_15::W) writer structure"]
impl crate::Writable for B0_15 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_15;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_16](b0_16) module"]
pub type B0_16 = crate::Reg<u8, _B0_16>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_16;
#[doc = "`read()` method returns [b0_16::R](b0_16::R) reader structure"]
impl crate::Readable for B0_16 {}
#[doc = "`write(|w| ..)` method takes [b0_16::W](b0_16::W) writer structure"]
impl crate::Writable for B0_16 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_16;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_17](b0_17) module"]
pub type B0_17 = crate::Reg<u8, _B0_17>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_17;
#[doc = "`read()` method returns [b0_17::R](b0_17::R) reader structure"]
impl crate::Readable for B0_17 {}
#[doc = "`write(|w| ..)` method takes [b0_17::W](b0_17::W) writer structure"]
impl crate::Writable for B0_17 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_17;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_18](b0_18) module"]
pub type B0_18 = crate::Reg<u8, _B0_18>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_18;
#[doc = "`read()` method returns [b0_18::R](b0_18::R) reader structure"]
impl crate::Readable for B0_18 {}
#[doc = "`write(|w| ..)` method takes [b0_18::W](b0_18::W) writer structure"]
impl crate::Writable for B0_18 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_18;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_19](b0_19) module"]
pub type B0_19 = crate::Reg<u8, _B0_19>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_19;
#[doc = "`read()` method returns [b0_19::R](b0_19::R) reader structure"]
impl crate::Readable for B0_19 {}
#[doc = "`write(|w| ..)` method takes [b0_19::W](b0_19::W) writer structure"]
impl crate::Writable for B0_19 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_19;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_20](b0_20) module"]
pub type B0_20 = crate::Reg<u8, _B0_20>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_20;
#[doc = "`read()` method returns [b0_20::R](b0_20::R) reader structure"]
impl crate::Readable for B0_20 {}
#[doc = "`write(|w| ..)` method takes [b0_20::W](b0_20::W) writer structure"]
impl crate::Writable for B0_20 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_20;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_21](b0_21) module"]
pub type B0_21 = crate::Reg<u8, _B0_21>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_21;
#[doc = "`read()` method returns [b0_21::R](b0_21::R) reader structure"]
impl crate::Readable for B0_21 {}
#[doc = "`write(|w| ..)` method takes [b0_21::W](b0_21::W) writer structure"]
impl crate::Writable for B0_21 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_21;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_22](b0_22) module"]
pub type B0_22 = crate::Reg<u8, _B0_22>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_22;
#[doc = "`read()` method returns [b0_22::R](b0_22::R) reader structure"]
impl crate::Readable for B0_22 {}
#[doc = "`write(|w| ..)` method takes [b0_22::W](b0_22::W) writer structure"]
impl crate::Writable for B0_22 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_22;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_23](b0_23) module"]
pub type B0_23 = crate::Reg<u8, _B0_23>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_23;
#[doc = "`read()` method returns [b0_23::R](b0_23::R) reader structure"]
impl crate::Readable for B0_23 {}
#[doc = "`write(|w| ..)` method takes [b0_23::W](b0_23::W) writer structure"]
impl crate::Writable for B0_23 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_23;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_24](b0_24) module"]
pub type B0_24 = crate::Reg<u8, _B0_24>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_24;
#[doc = "`read()` method returns [b0_24::R](b0_24::R) reader structure"]
impl crate::Readable for B0_24 {}
#[doc = "`write(|w| ..)` method takes [b0_24::W](b0_24::W) writer structure"]
impl crate::Writable for B0_24 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_24;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_25](b0_25) module"]
pub type B0_25 = crate::Reg<u8, _B0_25>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_25;
#[doc = "`read()` method returns [b0_25::R](b0_25::R) reader structure"]
impl crate::Readable for B0_25 {}
#[doc = "`write(|w| ..)` method takes [b0_25::W](b0_25::W) writer structure"]
impl crate::Writable for B0_25 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_25;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_26](b0_26) module"]
pub type B0_26 = crate::Reg<u8, _B0_26>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_26;
#[doc = "`read()` method returns [b0_26::R](b0_26::R) reader structure"]
impl crate::Readable for B0_26 {}
#[doc = "`write(|w| ..)` method takes [b0_26::W](b0_26::W) writer structure"]
impl crate::Writable for B0_26 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_26;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_27](b0_27) module"]
pub type B0_27 = crate::Reg<u8, _B0_27>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_27;
#[doc = "`read()` method returns [b0_27::R](b0_27::R) reader structure"]
impl crate::Readable for B0_27 {}
#[doc = "`write(|w| ..)` method takes [b0_27::W](b0_27::W) writer structure"]
impl crate::Writable for B0_27 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_27;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_28](b0_28) module"]
pub type B0_28 = crate::Reg<u8, _B0_28>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_28;
#[doc = "`read()` method returns [b0_28::R](b0_28::R) reader structure"]
impl crate::Readable for B0_28 {}
#[doc = "`write(|w| ..)` method takes [b0_28::W](b0_28::W) writer structure"]
impl crate::Writable for B0_28 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_28;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_29](b0_29) module"]
pub type B0_29 = crate::Reg<u8, _B0_29>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_29;
#[doc = "`read()` method returns [b0_29::R](b0_29::R) reader structure"]
impl crate::Readable for B0_29 {}
#[doc = "`write(|w| ..)` method takes [b0_29::W](b0_29::W) writer structure"]
impl crate::Writable for B0_29 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_29;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_30](b0_30) module"]
pub type B0_30 = crate::Reg<u8, _B0_30>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_30;
#[doc = "`read()` method returns [b0_30::R](b0_30::R) reader structure"]
impl crate::Readable for B0_30 {}
#[doc = "`write(|w| ..)` method takes [b0_30::W](b0_30::W) writer structure"]
impl crate::Writable for B0_30 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_30;
#[doc = "Byte pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [b0_31](b0_31) module"]
pub type B0_31 = crate::Reg<u8, _B0_31>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _B0_31;
#[doc = "`read()` method returns [b0_31::R](b0_31::R) reader structure"]
impl crate::Readable for B0_31 {}
#[doc = "`write(|w| ..)` method takes [b0_31::W](b0_31::W) writer structure"]
impl crate::Writable for B0_31 {}
#[doc = "Byte pin registers for all port GPIO pins"]
pub mod b0_31;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_0](w0_0) module"]
pub type W0_0 = crate::Reg<u32, _W0_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_0;
#[doc = "`read()` method returns [w0_0::R](w0_0::R) reader structure"]
impl crate::Readable for W0_0 {}
#[doc = "`write(|w| ..)` method takes [w0_0::W](w0_0::W) writer structure"]
impl crate::Writable for W0_0 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_0;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_1](w0_1) module"]
pub type W0_1 = crate::Reg<u32, _W0_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_1;
#[doc = "`read()` method returns [w0_1::R](w0_1::R) reader structure"]
impl crate::Readable for W0_1 {}
#[doc = "`write(|w| ..)` method takes [w0_1::W](w0_1::W) writer structure"]
impl crate::Writable for W0_1 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_1;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_2](w0_2) module"]
pub type W0_2 = crate::Reg<u32, _W0_2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_2;
#[doc = "`read()` method returns [w0_2::R](w0_2::R) reader structure"]
impl crate::Readable for W0_2 {}
#[doc = "`write(|w| ..)` method takes [w0_2::W](w0_2::W) writer structure"]
impl crate::Writable for W0_2 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_2;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_3](w0_3) module"]
pub type W0_3 = crate::Reg<u32, _W0_3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_3;
#[doc = "`read()` method returns [w0_3::R](w0_3::R) reader structure"]
impl crate::Readable for W0_3 {}
#[doc = "`write(|w| ..)` method takes [w0_3::W](w0_3::W) writer structure"]
impl crate::Writable for W0_3 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_3;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_4](w0_4) module"]
pub type W0_4 = crate::Reg<u32, _W0_4>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_4;
#[doc = "`read()` method returns [w0_4::R](w0_4::R) reader structure"]
impl crate::Readable for W0_4 {}
#[doc = "`write(|w| ..)` method takes [w0_4::W](w0_4::W) writer structure"]
impl crate::Writable for W0_4 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_4;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_5](w0_5) module"]
pub type W0_5 = crate::Reg<u32, _W0_5>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_5;
#[doc = "`read()` method returns [w0_5::R](w0_5::R) reader structure"]
impl crate::Readable for W0_5 {}
#[doc = "`write(|w| ..)` method takes [w0_5::W](w0_5::W) writer structure"]
impl crate::Writable for W0_5 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_5;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_6](w0_6) module"]
pub type W0_6 = crate::Reg<u32, _W0_6>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_6;
#[doc = "`read()` method returns [w0_6::R](w0_6::R) reader structure"]
impl crate::Readable for W0_6 {}
#[doc = "`write(|w| ..)` method takes [w0_6::W](w0_6::W) writer structure"]
impl crate::Writable for W0_6 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_6;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_7](w0_7) module"]
pub type W0_7 = crate::Reg<u32, _W0_7>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_7;
#[doc = "`read()` method returns [w0_7::R](w0_7::R) reader structure"]
impl crate::Readable for W0_7 {}
#[doc = "`write(|w| ..)` method takes [w0_7::W](w0_7::W) writer structure"]
impl crate::Writable for W0_7 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_7;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_8](w0_8) module"]
pub type W0_8 = crate::Reg<u32, _W0_8>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_8;
#[doc = "`read()` method returns [w0_8::R](w0_8::R) reader structure"]
impl crate::Readable for W0_8 {}
#[doc = "`write(|w| ..)` method takes [w0_8::W](w0_8::W) writer structure"]
impl crate::Writable for W0_8 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_8;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_9](w0_9) module"]
pub type W0_9 = crate::Reg<u32, _W0_9>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_9;
#[doc = "`read()` method returns [w0_9::R](w0_9::R) reader structure"]
impl crate::Readable for W0_9 {}
#[doc = "`write(|w| ..)` method takes [w0_9::W](w0_9::W) writer structure"]
impl crate::Writable for W0_9 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_9;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_10](w0_10) module"]
pub type W0_10 = crate::Reg<u32, _W0_10>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_10;
#[doc = "`read()` method returns [w0_10::R](w0_10::R) reader structure"]
impl crate::Readable for W0_10 {}
#[doc = "`write(|w| ..)` method takes [w0_10::W](w0_10::W) writer structure"]
impl crate::Writable for W0_10 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_10;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_11](w0_11) module"]
pub type W0_11 = crate::Reg<u32, _W0_11>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_11;
#[doc = "`read()` method returns [w0_11::R](w0_11::R) reader structure"]
impl crate::Readable for W0_11 {}
#[doc = "`write(|w| ..)` method takes [w0_11::W](w0_11::W) writer structure"]
impl crate::Writable for W0_11 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_11;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_12](w0_12) module"]
pub type W0_12 = crate::Reg<u32, _W0_12>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_12;
#[doc = "`read()` method returns [w0_12::R](w0_12::R) reader structure"]
impl crate::Readable for W0_12 {}
#[doc = "`write(|w| ..)` method takes [w0_12::W](w0_12::W) writer structure"]
impl crate::Writable for W0_12 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_12;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_13](w0_13) module"]
pub type W0_13 = crate::Reg<u32, _W0_13>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_13;
#[doc = "`read()` method returns [w0_13::R](w0_13::R) reader structure"]
impl crate::Readable for W0_13 {}
#[doc = "`write(|w| ..)` method takes [w0_13::W](w0_13::W) writer structure"]
impl crate::Writable for W0_13 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_13;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_14](w0_14) module"]
pub type W0_14 = crate::Reg<u32, _W0_14>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_14;
#[doc = "`read()` method returns [w0_14::R](w0_14::R) reader structure"]
impl crate::Readable for W0_14 {}
#[doc = "`write(|w| ..)` method takes [w0_14::W](w0_14::W) writer structure"]
impl crate::Writable for W0_14 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_14;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_15](w0_15) module"]
pub type W0_15 = crate::Reg<u32, _W0_15>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_15;
#[doc = "`read()` method returns [w0_15::R](w0_15::R) reader structure"]
impl crate::Readable for W0_15 {}
#[doc = "`write(|w| ..)` method takes [w0_15::W](w0_15::W) writer structure"]
impl crate::Writable for W0_15 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_15;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_16](w0_16) module"]
pub type W0_16 = crate::Reg<u32, _W0_16>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_16;
#[doc = "`read()` method returns [w0_16::R](w0_16::R) reader structure"]
impl crate::Readable for W0_16 {}
#[doc = "`write(|w| ..)` method takes [w0_16::W](w0_16::W) writer structure"]
impl crate::Writable for W0_16 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_16;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_17](w0_17) module"]
pub type W0_17 = crate::Reg<u32, _W0_17>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_17;
#[doc = "`read()` method returns [w0_17::R](w0_17::R) reader structure"]
impl crate::Readable for W0_17 {}
#[doc = "`write(|w| ..)` method takes [w0_17::W](w0_17::W) writer structure"]
impl crate::Writable for W0_17 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_17;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_18](w0_18) module"]
pub type W0_18 = crate::Reg<u32, _W0_18>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_18;
#[doc = "`read()` method returns [w0_18::R](w0_18::R) reader structure"]
impl crate::Readable for W0_18 {}
#[doc = "`write(|w| ..)` method takes [w0_18::W](w0_18::W) writer structure"]
impl crate::Writable for W0_18 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_18;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_19](w0_19) module"]
pub type W0_19 = crate::Reg<u32, _W0_19>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_19;
#[doc = "`read()` method returns [w0_19::R](w0_19::R) reader structure"]
impl crate::Readable for W0_19 {}
#[doc = "`write(|w| ..)` method takes [w0_19::W](w0_19::W) writer structure"]
impl crate::Writable for W0_19 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_19;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_20](w0_20) module"]
pub type W0_20 = crate::Reg<u32, _W0_20>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_20;
#[doc = "`read()` method returns [w0_20::R](w0_20::R) reader structure"]
impl crate::Readable for W0_20 {}
#[doc = "`write(|w| ..)` method takes [w0_20::W](w0_20::W) writer structure"]
impl crate::Writable for W0_20 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_20;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_21](w0_21) module"]
pub type W0_21 = crate::Reg<u32, _W0_21>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_21;
#[doc = "`read()` method returns [w0_21::R](w0_21::R) reader structure"]
impl crate::Readable for W0_21 {}
#[doc = "`write(|w| ..)` method takes [w0_21::W](w0_21::W) writer structure"]
impl crate::Writable for W0_21 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_21;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_22](w0_22) module"]
pub type W0_22 = crate::Reg<u32, _W0_22>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_22;
#[doc = "`read()` method returns [w0_22::R](w0_22::R) reader structure"]
impl crate::Readable for W0_22 {}
#[doc = "`write(|w| ..)` method takes [w0_22::W](w0_22::W) writer structure"]
impl crate::Writable for W0_22 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_22;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_23](w0_23) module"]
pub type W0_23 = crate::Reg<u32, _W0_23>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_23;
#[doc = "`read()` method returns [w0_23::R](w0_23::R) reader structure"]
impl crate::Readable for W0_23 {}
#[doc = "`write(|w| ..)` method takes [w0_23::W](w0_23::W) writer structure"]
impl crate::Writable for W0_23 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_23;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_24](w0_24) module"]
pub type W0_24 = crate::Reg<u32, _W0_24>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_24;
#[doc = "`read()` method returns [w0_24::R](w0_24::R) reader structure"]
impl crate::Readable for W0_24 {}
#[doc = "`write(|w| ..)` method takes [w0_24::W](w0_24::W) writer structure"]
impl crate::Writable for W0_24 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_24;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_25](w0_25) module"]
pub type W0_25 = crate::Reg<u32, _W0_25>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_25;
#[doc = "`read()` method returns [w0_25::R](w0_25::R) reader structure"]
impl crate::Readable for W0_25 {}
#[doc = "`write(|w| ..)` method takes [w0_25::W](w0_25::W) writer structure"]
impl crate::Writable for W0_25 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_25;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_26](w0_26) module"]
pub type W0_26 = crate::Reg<u32, _W0_26>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_26;
#[doc = "`read()` method returns [w0_26::R](w0_26::R) reader structure"]
impl crate::Readable for W0_26 {}
#[doc = "`write(|w| ..)` method takes [w0_26::W](w0_26::W) writer structure"]
impl crate::Writable for W0_26 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_26;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_27](w0_27) module"]
pub type W0_27 = crate::Reg<u32, _W0_27>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_27;
#[doc = "`read()` method returns [w0_27::R](w0_27::R) reader structure"]
impl crate::Readable for W0_27 {}
#[doc = "`write(|w| ..)` method takes [w0_27::W](w0_27::W) writer structure"]
impl crate::Writable for W0_27 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_27;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_28](w0_28) module"]
pub type W0_28 = crate::Reg<u32, _W0_28>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_28;
#[doc = "`read()` method returns [w0_28::R](w0_28::R) reader structure"]
impl crate::Readable for W0_28 {}
#[doc = "`write(|w| ..)` method takes [w0_28::W](w0_28::W) writer structure"]
impl crate::Writable for W0_28 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_28;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_29](w0_29) module"]
pub type W0_29 = crate::Reg<u32, _W0_29>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_29;
#[doc = "`read()` method returns [w0_29::R](w0_29::R) reader structure"]
impl crate::Readable for W0_29 {}
#[doc = "`write(|w| ..)` method takes [w0_29::W](w0_29::W) writer structure"]
impl crate::Writable for W0_29 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_29;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_30](w0_30) module"]
pub type W0_30 = crate::Reg<u32, _W0_30>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_30;
#[doc = "`read()` method returns [w0_30::R](w0_30::R) reader structure"]
impl crate::Readable for W0_30 {}
#[doc = "`write(|w| ..)` method takes [w0_30::W](w0_30::W) writer structure"]
impl crate::Writable for W0_30 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_30;
#[doc = "Word pin registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [w0_31](w0_31) module"]
pub type W0_31 = crate::Reg<u32, _W0_31>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _W0_31;
#[doc = "`read()` method returns [w0_31::R](w0_31::R) reader structure"]
impl crate::Readable for W0_31 {}
#[doc = "`write(|w| ..)` method takes [w0_31::W](w0_31::W) writer structure"]
impl crate::Writable for W0_31 {}
#[doc = "Word pin registers for all port GPIO pins"]
pub mod w0_31;
#[doc = "Direction registers for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [dir0](dir0) module"]
pub type DIR0 = crate::Reg<u32, _DIR0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DIR0;
#[doc = "`read()` method returns [dir0::R](dir0::R) reader structure"]
impl crate::Readable for DIR0 {}
#[doc = "`write(|w| ..)` method takes [dir0::W](dir0::W) writer structure"]
impl crate::Writable for DIR0 {}
#[doc = "Direction registers for all port GPIO pins"]
pub mod dir0;
#[doc = "Mask register for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [mask0](mask0) module"]
pub type MASK0 = crate::Reg<u32, _MASK0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _MASK0;
#[doc = "`read()` method returns [mask0::R](mask0::R) reader structure"]
impl crate::Readable for MASK0 {}
#[doc = "`write(|w| ..)` method takes [mask0::W](mask0::W) writer structure"]
impl crate::Writable for MASK0 {}
#[doc = "Mask register for all port GPIO pins"]
pub mod mask0;
#[doc = "Port pin register for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [pin0](pin0) module"]
pub type PIN0 = crate::Reg<u32, _PIN0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _PIN0;
#[doc = "`read()` method returns [pin0::R](pin0::R) reader structure"]
impl crate::Readable for PIN0 {}
#[doc = "`write(|w| ..)` method takes [pin0::W](pin0::W) writer structure"]
impl crate::Writable for PIN0 {}
#[doc = "Port pin register for all port GPIO pins"]
pub mod pin0;
#[doc = "Masked port register for all port GPIO pins\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [mpin0](mpin0) module"]
pub type MPIN0 = crate::Reg<u32, _MPIN0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _MPIN0;
#[doc = "`read()` method returns [mpin0::R](mpin0::R) reader structure"]
impl crate::Readable for MPIN0 {}
#[doc = "`write(|w| ..)` method takes [mpin0::W](mpin0::W) writer structure"]
impl crate::Writable for MPIN0 {}
#[doc = "Masked port register for all port GPIO pins"]
pub mod mpin0;
#[doc = "Write: Set register for port. Read: output bits for port\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [set0](set0) module"]
pub type SET0 = crate::Reg<u32, _SET0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SET0;
#[doc = "`read()` method returns [set0::R](set0::R) reader structure"]
impl crate::Readable for SET0 {}
#[doc = "`write(|w| ..)` method takes [set0::W](set0::W) writer structure"]
impl crate::Writable for SET0 {}
#[doc = "Write: Set register for port. Read: output bits for port"]
pub mod set0;
#[doc = "Clear port for all port GPIO pins\n\nThis register you can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [clr0](clr0) module"]
pub type CLR0 = crate::Reg<u32, _CLR0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLR0;
#[doc = "`write(|w| ..)` method takes [clr0::W](clr0::W) writer structure"]
impl crate::Writable for CLR0 {}
#[doc = "Clear port for all port GPIO pins"]
pub mod clr0;
#[doc = "Toggle port for all port GPIO pins\n\nThis register you can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [not0](not0) module"]
pub type NOT0 = crate::Reg<u32, _NOT0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _NOT0;
#[doc = "`write(|w| ..)` method takes [not0::W](not0::W) writer structure"]
impl crate::Writable for NOT0 {}
#[doc = "Toggle port for all port GPIO pins"]
pub mod not0;
#[doc = "Set pin direction bits for port\n\nThis register you can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [dirset0](dirset0) module"]
pub type DIRSET0 = crate::Reg<u32, _DIRSET0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DIRSET0;
#[doc = "`write(|w| ..)` method takes [dirset0::W](dirset0::W) writer structure"]
impl crate::Writable for DIRSET0 {}
#[doc = "Set pin direction bits for port"]
pub mod dirset0;
#[doc = "Clear pin direction bits for port\n\nThis register you can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [dirclr0](dirclr0) module"]
pub type DIRCLR0 = crate::Reg<u32, _DIRCLR0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DIRCLR0;
#[doc = "`write(|w| ..)` method takes [dirclr0::W](dirclr0::W) writer structure"]
impl crate::Writable for DIRCLR0 {}
#[doc = "Clear pin direction bits for port"]
pub mod dirclr0;
#[doc = "Toggle pin direction bits for port\n\nThis register you can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [dirnot0](dirnot0) module"]
pub type DIRNOT0 = crate::Reg<u32, _DIRNOT0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DIRNOT0;
#[doc = "`write(|w| ..)` method takes [dirnot0::W](dirnot0::W) writer structure"]
impl crate::Writable for DIRNOT0 {}
#[doc = "Toggle pin direction bits for port"]
pub mod dirnot0;