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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
#[repr(C)]
#[cfg_attr(feature = "impl-register-debug", derive(Debug))]
#[doc = "Register block"]
pub struct RegisterBlock {
    pro_mac_intr_map: PRO_MAC_INTR_MAP,
    pro_mac_nmi_map: PRO_MAC_NMI_MAP,
    pro_pwr_intr_map: PRO_PWR_INTR_MAP,
    pro_bb_int_map: PRO_BB_INT_MAP,
    pro_bt_mac_int_map: PRO_BT_MAC_INT_MAP,
    pro_bt_bb_int_map: PRO_BT_BB_INT_MAP,
    pro_bt_bb_nmi_map: PRO_BT_BB_NMI_MAP,
    pro_rwbt_irq_map: PRO_RWBT_IRQ_MAP,
    pro_rwble_irq_map: PRO_RWBLE_IRQ_MAP,
    pro_rwbt_nmi_map: PRO_RWBT_NMI_MAP,
    pro_rwble_nmi_map: PRO_RWBLE_NMI_MAP,
    pro_slc0_intr_map: PRO_SLC0_INTR_MAP,
    pro_slc1_intr_map: PRO_SLC1_INTR_MAP,
    pro_uhci0_intr_map: PRO_UHCI0_INTR_MAP,
    pro_uhci1_intr_map: PRO_UHCI1_INTR_MAP,
    pro_tg_t0_level_int_map: PRO_TG_T0_LEVEL_INT_MAP,
    pro_tg_t1_level_int_map: PRO_TG_T1_LEVEL_INT_MAP,
    pro_tg_wdt_level_int_map: PRO_TG_WDT_LEVEL_INT_MAP,
    pro_tg_lact_level_int_map: PRO_TG_LACT_LEVEL_INT_MAP,
    pro_tg1_t0_level_int_map: PRO_TG1_T0_LEVEL_INT_MAP,
    pro_tg1_t1_level_int_map: PRO_TG1_T1_LEVEL_INT_MAP,
    pro_tg1_wdt_level_int_map: PRO_TG1_WDT_LEVEL_INT_MAP,
    pro_tg1_lact_level_int_map: PRO_TG1_LACT_LEVEL_INT_MAP,
    pro_gpio_interrupt_pro_map: PRO_GPIO_INTERRUPT_PRO_MAP,
    pro_gpio_interrupt_pro_nmi_map: PRO_GPIO_INTERRUPT_PRO_NMI_MAP,
    pro_gpio_interrupt_app_map: PRO_GPIO_INTERRUPT_APP_MAP,
    pro_gpio_interrupt_app_nmi_map: PRO_GPIO_INTERRUPT_APP_NMI_MAP,
    pro_dedicated_gpio_in_intr_map: PRO_DEDICATED_GPIO_IN_INTR_MAP,
    pro_cpu_intr_from_cpu_0_map: PRO_CPU_INTR_FROM_CPU_0_MAP,
    pro_cpu_intr_from_cpu_1_map: PRO_CPU_INTR_FROM_CPU_1_MAP,
    pro_cpu_intr_from_cpu_2_map: PRO_CPU_INTR_FROM_CPU_2_MAP,
    pro_cpu_intr_from_cpu_3_map: PRO_CPU_INTR_FROM_CPU_3_MAP,
    pro_spi_intr_1_map: PRO_SPI_INTR_1_MAP,
    pro_spi_intr_2_map: PRO_SPI_INTR_2_MAP,
    pro_spi_intr_3_map: PRO_SPI_INTR_3_MAP,
    pro_i2s0_int_map: PRO_I2S0_INT_MAP,
    pro_i2s1_int_map: PRO_I2S1_INT_MAP,
    pro_uart_intr_map: PRO_UART_INTR_MAP,
    pro_uart1_intr_map: PRO_UART1_INTR_MAP,
    pro_uart2_intr_map: PRO_UART2_INTR_MAP,
    pro_sdio_host_interrupt_map: PRO_SDIO_HOST_INTERRUPT_MAP,
    pro_pwm0_intr_map: PRO_PWM0_INTR_MAP,
    pro_pwm1_intr_map: PRO_PWM1_INTR_MAP,
    pro_pwm2_intr_map: PRO_PWM2_INTR_MAP,
    pro_pwm3_intr_map: PRO_PWM3_INTR_MAP,
    pro_ledc_int_map: PRO_LEDC_INT_MAP,
    pro_efuse_int_map: PRO_EFUSE_INT_MAP,
    pro_can_int_map: PRO_CAN_INT_MAP,
    pro_usb_intr_map: PRO_USB_INTR_MAP,
    pro_rtc_core_intr_map: PRO_RTC_CORE_INTR_MAP,
    pro_rmt_intr_map: PRO_RMT_INTR_MAP,
    pro_pcnt_intr_map: PRO_PCNT_INTR_MAP,
    pro_i2c_ext0_intr_map: PRO_I2C_EXT0_INTR_MAP,
    pro_i2c_ext1_intr_map: PRO_I2C_EXT1_INTR_MAP,
    pro_rsa_intr_map: PRO_RSA_INTR_MAP,
    pro_sha_intr_map: PRO_SHA_INTR_MAP,
    pro_aes_intr_map: PRO_AES_INTR_MAP,
    pro_spi2_dma_int_map: PRO_SPI2_DMA_INT_MAP,
    pro_spi3_dma_int_map: PRO_SPI3_DMA_INT_MAP,
    pro_wdg_int_map: PRO_WDG_INT_MAP,
    pro_timer_int1_map: PRO_TIMER_INT1_MAP,
    pro_timer_int2_map: PRO_TIMER_INT2_MAP,
    pro_tg_t0_edge_int_map: PRO_TG_T0_EDGE_INT_MAP,
    pro_tg_t1_edge_int_map: PRO_TG_T1_EDGE_INT_MAP,
    pro_tg_wdt_edge_int_map: PRO_TG_WDT_EDGE_INT_MAP,
    pro_tg_lact_edge_int_map: PRO_TG_LACT_EDGE_INT_MAP,
    pro_tg1_t0_edge_int_map: PRO_TG1_T0_EDGE_INT_MAP,
    pro_tg1_t1_edge_int_map: PRO_TG1_T1_EDGE_INT_MAP,
    pro_tg1_wdt_edge_int_map: PRO_TG1_WDT_EDGE_INT_MAP,
    pro_tg1_lact_edge_int_map: PRO_TG1_LACT_EDGE_INT_MAP,
    pro_cache_ia_int_map: PRO_CACHE_IA_INT_MAP,
    pro_systimer_target0_int_map: PRO_SYSTIMER_TARGET0_INT_MAP,
    pro_systimer_target1_int_map: PRO_SYSTIMER_TARGET1_INT_MAP,
    pro_systimer_target2_int_map: PRO_SYSTIMER_TARGET2_INT_MAP,
    pro_assist_debug_intr_map: PRO_ASSIST_DEBUG_INTR_MAP,
    pro_pms_pro_iram0_ilg_intr_map: PRO_PMS_PRO_IRAM0_ILG_INTR_MAP,
    pro_pms_pro_dram0_ilg_intr_map: PRO_PMS_PRO_DRAM0_ILG_INTR_MAP,
    pro_pms_pro_dport_ilg_intr_map: PRO_PMS_PRO_DPORT_ILG_INTR_MAP,
    pro_pms_pro_ahb_ilg_intr_map: PRO_PMS_PRO_AHB_ILG_INTR_MAP,
    pro_pms_pro_cache_ilg_intr_map: PRO_PMS_PRO_CACHE_ILG_INTR_MAP,
    pro_pms_dma_apb_i_ilg_intr_map: PRO_PMS_DMA_APB_I_ILG_INTR_MAP,
    pro_pms_dma_rx_i_ilg_intr_map: PRO_PMS_DMA_RX_I_ILG_INTR_MAP,
    pro_pms_dma_tx_i_ilg_intr_map: PRO_PMS_DMA_TX_I_ILG_INTR_MAP,
    pro_spi_mem_reject_intr_map: PRO_SPI_MEM_REJECT_INTR_MAP,
    pro_dma_copy_intr_map: PRO_DMA_COPY_INTR_MAP,
    pro_spi4_dma_int_map: PRO_SPI4_DMA_INT_MAP,
    pro_spi_intr_4_map: PRO_SPI_INTR_4_MAP,
    pro_dcache_preload_int_map: PRO_DCACHE_PRELOAD_INT_MAP,
    pro_icache_preload_int_map: PRO_ICACHE_PRELOAD_INT_MAP,
    pro_apb_adc_int_map: PRO_APB_ADC_INT_MAP,
    pro_crypto_dma_int_map: PRO_CRYPTO_DMA_INT_MAP,
    pro_cpu_peri_error_int_map: PRO_CPU_PERI_ERROR_INT_MAP,
    pro_apb_peri_error_int_map: PRO_APB_PERI_ERROR_INT_MAP,
    pro_dcache_sync_int_map: PRO_DCACHE_SYNC_INT_MAP,
    pro_icache_sync_int_map: PRO_ICACHE_SYNC_INT_MAP,
    pro_intr_status_0: PRO_INTR_STATUS_0,
    pro_intr_status_1: PRO_INTR_STATUS_1,
    pro_intr_status_2: PRO_INTR_STATUS_2,
    clock_gate: CLOCK_GATE,
    _reserved99: [u8; 0x0e70],
    reg_date: REG_DATE,
}
impl RegisterBlock {
    #[doc = "0x00 - MAC_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_mac_intr_map(&self) -> &PRO_MAC_INTR_MAP {
        &self.pro_mac_intr_map
    }
    #[doc = "0x04 - MAC_NMI interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_mac_nmi_map(&self) -> &PRO_MAC_NMI_MAP {
        &self.pro_mac_nmi_map
    }
    #[doc = "0x08 - PWR_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pwr_intr_map(&self) -> &PRO_PWR_INTR_MAP {
        &self.pro_pwr_intr_map
    }
    #[doc = "0x0c - BB_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_bb_int_map(&self) -> &PRO_BB_INT_MAP {
        &self.pro_bb_int_map
    }
    #[doc = "0x10 - BT_MAC_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_bt_mac_int_map(&self) -> &PRO_BT_MAC_INT_MAP {
        &self.pro_bt_mac_int_map
    }
    #[doc = "0x14 - BT_BB_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_bt_bb_int_map(&self) -> &PRO_BT_BB_INT_MAP {
        &self.pro_bt_bb_int_map
    }
    #[doc = "0x18 - BT_BB_NMI interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_bt_bb_nmi_map(&self) -> &PRO_BT_BB_NMI_MAP {
        &self.pro_bt_bb_nmi_map
    }
    #[doc = "0x1c - RWBT_IRQ interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_rwbt_irq_map(&self) -> &PRO_RWBT_IRQ_MAP {
        &self.pro_rwbt_irq_map
    }
    #[doc = "0x20 - RWBLE_IRQ interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_rwble_irq_map(&self) -> &PRO_RWBLE_IRQ_MAP {
        &self.pro_rwble_irq_map
    }
    #[doc = "0x24 - RWBT_NMI interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_rwbt_nmi_map(&self) -> &PRO_RWBT_NMI_MAP {
        &self.pro_rwbt_nmi_map
    }
    #[doc = "0x28 - RWBLE_NMI interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_rwble_nmi_map(&self) -> &PRO_RWBLE_NMI_MAP {
        &self.pro_rwble_nmi_map
    }
    #[doc = "0x2c - SLC0_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_slc0_intr_map(&self) -> &PRO_SLC0_INTR_MAP {
        &self.pro_slc0_intr_map
    }
    #[doc = "0x30 - SLC1_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_slc1_intr_map(&self) -> &PRO_SLC1_INTR_MAP {
        &self.pro_slc1_intr_map
    }
    #[doc = "0x34 - UHCI0_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_uhci0_intr_map(&self) -> &PRO_UHCI0_INTR_MAP {
        &self.pro_uhci0_intr_map
    }
    #[doc = "0x38 - UHCI1_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_uhci1_intr_map(&self) -> &PRO_UHCI1_INTR_MAP {
        &self.pro_uhci1_intr_map
    }
    #[doc = "0x3c - TG_T0_LEVEL_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg_t0_level_int_map(&self) -> &PRO_TG_T0_LEVEL_INT_MAP {
        &self.pro_tg_t0_level_int_map
    }
    #[doc = "0x40 - TG_T1_LEVEL_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg_t1_level_int_map(&self) -> &PRO_TG_T1_LEVEL_INT_MAP {
        &self.pro_tg_t1_level_int_map
    }
    #[doc = "0x44 - TG_WDT_LEVEL_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg_wdt_level_int_map(&self) -> &PRO_TG_WDT_LEVEL_INT_MAP {
        &self.pro_tg_wdt_level_int_map
    }
    #[doc = "0x48 - TG_LACT_LEVEL_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg_lact_level_int_map(&self) -> &PRO_TG_LACT_LEVEL_INT_MAP {
        &self.pro_tg_lact_level_int_map
    }
    #[doc = "0x4c - TG1_T0_LEVEL_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg1_t0_level_int_map(&self) -> &PRO_TG1_T0_LEVEL_INT_MAP {
        &self.pro_tg1_t0_level_int_map
    }
    #[doc = "0x50 - TG1_T1_LEVEL_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg1_t1_level_int_map(&self) -> &PRO_TG1_T1_LEVEL_INT_MAP {
        &self.pro_tg1_t1_level_int_map
    }
    #[doc = "0x54 - TG1_WDT_LEVEL_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg1_wdt_level_int_map(&self) -> &PRO_TG1_WDT_LEVEL_INT_MAP {
        &self.pro_tg1_wdt_level_int_map
    }
    #[doc = "0x58 - TG1_LACT_LEVEL_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg1_lact_level_int_map(&self) -> &PRO_TG1_LACT_LEVEL_INT_MAP {
        &self.pro_tg1_lact_level_int_map
    }
    #[doc = "0x5c - GPIO_INTERRUPT_PRO interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_gpio_interrupt_pro_map(&self) -> &PRO_GPIO_INTERRUPT_PRO_MAP {
        &self.pro_gpio_interrupt_pro_map
    }
    #[doc = "0x60 - GPIO_INTERRUPT_PRO_NMI interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_gpio_interrupt_pro_nmi_map(&self) -> &PRO_GPIO_INTERRUPT_PRO_NMI_MAP {
        &self.pro_gpio_interrupt_pro_nmi_map
    }
    #[doc = "0x64 - GPIO_INTERRUPT_APP interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_gpio_interrupt_app_map(&self) -> &PRO_GPIO_INTERRUPT_APP_MAP {
        &self.pro_gpio_interrupt_app_map
    }
    #[doc = "0x68 - GPIO_INTERRUPT_APP_NMI interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_gpio_interrupt_app_nmi_map(&self) -> &PRO_GPIO_INTERRUPT_APP_NMI_MAP {
        &self.pro_gpio_interrupt_app_nmi_map
    }
    #[doc = "0x6c - DEDICATED_GPIO_IN_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_dedicated_gpio_in_intr_map(&self) -> &PRO_DEDICATED_GPIO_IN_INTR_MAP {
        &self.pro_dedicated_gpio_in_intr_map
    }
    #[doc = "0x70 - CPU_INTR_FROM_CPU_0 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_cpu_intr_from_cpu_0_map(&self) -> &PRO_CPU_INTR_FROM_CPU_0_MAP {
        &self.pro_cpu_intr_from_cpu_0_map
    }
    #[doc = "0x74 - CPU_INTR_FROM_CPU_1 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_cpu_intr_from_cpu_1_map(&self) -> &PRO_CPU_INTR_FROM_CPU_1_MAP {
        &self.pro_cpu_intr_from_cpu_1_map
    }
    #[doc = "0x78 - CPU_INTR_FROM_CPU_2 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_cpu_intr_from_cpu_2_map(&self) -> &PRO_CPU_INTR_FROM_CPU_2_MAP {
        &self.pro_cpu_intr_from_cpu_2_map
    }
    #[doc = "0x7c - CPU_INTR_FROM_CPU_3 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_cpu_intr_from_cpu_3_map(&self) -> &PRO_CPU_INTR_FROM_CPU_3_MAP {
        &self.pro_cpu_intr_from_cpu_3_map
    }
    #[doc = "0x80 - SPI_INTR_1 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_spi_intr_1_map(&self) -> &PRO_SPI_INTR_1_MAP {
        &self.pro_spi_intr_1_map
    }
    #[doc = "0x84 - SPI_INTR_2 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_spi_intr_2_map(&self) -> &PRO_SPI_INTR_2_MAP {
        &self.pro_spi_intr_2_map
    }
    #[doc = "0x88 - SPI_INTR_3 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_spi_intr_3_map(&self) -> &PRO_SPI_INTR_3_MAP {
        &self.pro_spi_intr_3_map
    }
    #[doc = "0x8c - I2S0_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_i2s0_int_map(&self) -> &PRO_I2S0_INT_MAP {
        &self.pro_i2s0_int_map
    }
    #[doc = "0x90 - I2S1_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_i2s1_int_map(&self) -> &PRO_I2S1_INT_MAP {
        &self.pro_i2s1_int_map
    }
    #[doc = "0x94 - UART_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_uart_intr_map(&self) -> &PRO_UART_INTR_MAP {
        &self.pro_uart_intr_map
    }
    #[doc = "0x98 - UART1_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_uart1_intr_map(&self) -> &PRO_UART1_INTR_MAP {
        &self.pro_uart1_intr_map
    }
    #[doc = "0x9c - UART2_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_uart2_intr_map(&self) -> &PRO_UART2_INTR_MAP {
        &self.pro_uart2_intr_map
    }
    #[doc = "0xa0 - SDIO_HOST_INTERRUPT configuration register"]
    #[inline(always)]
    pub const fn pro_sdio_host_interrupt_map(&self) -> &PRO_SDIO_HOST_INTERRUPT_MAP {
        &self.pro_sdio_host_interrupt_map
    }
    #[doc = "0xa4 - PWM0_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pwm0_intr_map(&self) -> &PRO_PWM0_INTR_MAP {
        &self.pro_pwm0_intr_map
    }
    #[doc = "0xa8 - PWM1_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pwm1_intr_map(&self) -> &PRO_PWM1_INTR_MAP {
        &self.pro_pwm1_intr_map
    }
    #[doc = "0xac - PWM2_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pwm2_intr_map(&self) -> &PRO_PWM2_INTR_MAP {
        &self.pro_pwm2_intr_map
    }
    #[doc = "0xb0 - PWM3_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pwm3_intr_map(&self) -> &PRO_PWM3_INTR_MAP {
        &self.pro_pwm3_intr_map
    }
    #[doc = "0xb4 - LEDC_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_ledc_int_map(&self) -> &PRO_LEDC_INT_MAP {
        &self.pro_ledc_int_map
    }
    #[doc = "0xb8 - EFUSE_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_efuse_int_map(&self) -> &PRO_EFUSE_INT_MAP {
        &self.pro_efuse_int_map
    }
    #[doc = "0xbc - CAN_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_can_int_map(&self) -> &PRO_CAN_INT_MAP {
        &self.pro_can_int_map
    }
    #[doc = "0xc0 - USB_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_usb_intr_map(&self) -> &PRO_USB_INTR_MAP {
        &self.pro_usb_intr_map
    }
    #[doc = "0xc4 - RTC_CORE_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_rtc_core_intr_map(&self) -> &PRO_RTC_CORE_INTR_MAP {
        &self.pro_rtc_core_intr_map
    }
    #[doc = "0xc8 - RMT_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_rmt_intr_map(&self) -> &PRO_RMT_INTR_MAP {
        &self.pro_rmt_intr_map
    }
    #[doc = "0xcc - PCNT_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pcnt_intr_map(&self) -> &PRO_PCNT_INTR_MAP {
        &self.pro_pcnt_intr_map
    }
    #[doc = "0xd0 - I2C_EXT0_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_i2c_ext0_intr_map(&self) -> &PRO_I2C_EXT0_INTR_MAP {
        &self.pro_i2c_ext0_intr_map
    }
    #[doc = "0xd4 - I2C_EXT1_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_i2c_ext1_intr_map(&self) -> &PRO_I2C_EXT1_INTR_MAP {
        &self.pro_i2c_ext1_intr_map
    }
    #[doc = "0xd8 - RSA_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_rsa_intr_map(&self) -> &PRO_RSA_INTR_MAP {
        &self.pro_rsa_intr_map
    }
    #[doc = "0xdc - SHA_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_sha_intr_map(&self) -> &PRO_SHA_INTR_MAP {
        &self.pro_sha_intr_map
    }
    #[doc = "0xe0 - AES_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_aes_intr_map(&self) -> &PRO_AES_INTR_MAP {
        &self.pro_aes_intr_map
    }
    #[doc = "0xe4 - SPI2_DMA_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_spi2_dma_int_map(&self) -> &PRO_SPI2_DMA_INT_MAP {
        &self.pro_spi2_dma_int_map
    }
    #[doc = "0xe8 - SPI3_DMA_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_spi3_dma_int_map(&self) -> &PRO_SPI3_DMA_INT_MAP {
        &self.pro_spi3_dma_int_map
    }
    #[doc = "0xec - WDG_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_wdg_int_map(&self) -> &PRO_WDG_INT_MAP {
        &self.pro_wdg_int_map
    }
    #[doc = "0xf0 - TIMER_INT1 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_timer_int1_map(&self) -> &PRO_TIMER_INT1_MAP {
        &self.pro_timer_int1_map
    }
    #[doc = "0xf4 - TIMER_INT2 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_timer_int2_map(&self) -> &PRO_TIMER_INT2_MAP {
        &self.pro_timer_int2_map
    }
    #[doc = "0xf8 - TG_T0_EDGE_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg_t0_edge_int_map(&self) -> &PRO_TG_T0_EDGE_INT_MAP {
        &self.pro_tg_t0_edge_int_map
    }
    #[doc = "0xfc - TG_T1_EDGE_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg_t1_edge_int_map(&self) -> &PRO_TG_T1_EDGE_INT_MAP {
        &self.pro_tg_t1_edge_int_map
    }
    #[doc = "0x100 - TG_WDT_EDGE_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg_wdt_edge_int_map(&self) -> &PRO_TG_WDT_EDGE_INT_MAP {
        &self.pro_tg_wdt_edge_int_map
    }
    #[doc = "0x104 - TG_LACT_EDGE_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg_lact_edge_int_map(&self) -> &PRO_TG_LACT_EDGE_INT_MAP {
        &self.pro_tg_lact_edge_int_map
    }
    #[doc = "0x108 - TG1_T0_EDGE_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg1_t0_edge_int_map(&self) -> &PRO_TG1_T0_EDGE_INT_MAP {
        &self.pro_tg1_t0_edge_int_map
    }
    #[doc = "0x10c - TG1_T1_EDGE_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg1_t1_edge_int_map(&self) -> &PRO_TG1_T1_EDGE_INT_MAP {
        &self.pro_tg1_t1_edge_int_map
    }
    #[doc = "0x110 - TG1_WDT_EDGE_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg1_wdt_edge_int_map(&self) -> &PRO_TG1_WDT_EDGE_INT_MAP {
        &self.pro_tg1_wdt_edge_int_map
    }
    #[doc = "0x114 - TG1_LACT_EDGE_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_tg1_lact_edge_int_map(&self) -> &PRO_TG1_LACT_EDGE_INT_MAP {
        &self.pro_tg1_lact_edge_int_map
    }
    #[doc = "0x118 - CACHE_IA_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_cache_ia_int_map(&self) -> &PRO_CACHE_IA_INT_MAP {
        &self.pro_cache_ia_int_map
    }
    #[doc = "0x11c - SYSTIMER_TARGET0_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_systimer_target0_int_map(&self) -> &PRO_SYSTIMER_TARGET0_INT_MAP {
        &self.pro_systimer_target0_int_map
    }
    #[doc = "0x120 - SYSTIMER_TARGET1_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_systimer_target1_int_map(&self) -> &PRO_SYSTIMER_TARGET1_INT_MAP {
        &self.pro_systimer_target1_int_map
    }
    #[doc = "0x124 - SYSTIMER_TARGET2_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_systimer_target2_int_map(&self) -> &PRO_SYSTIMER_TARGET2_INT_MAP {
        &self.pro_systimer_target2_int_map
    }
    #[doc = "0x128 - ASSIST_DEBUG_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_assist_debug_intr_map(&self) -> &PRO_ASSIST_DEBUG_INTR_MAP {
        &self.pro_assist_debug_intr_map
    }
    #[doc = "0x12c - PMS_PRO_IRAM0_ILG interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pms_pro_iram0_ilg_intr_map(&self) -> &PRO_PMS_PRO_IRAM0_ILG_INTR_MAP {
        &self.pro_pms_pro_iram0_ilg_intr_map
    }
    #[doc = "0x130 - PMS_PRO_DRAM0_ILG interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pms_pro_dram0_ilg_intr_map(&self) -> &PRO_PMS_PRO_DRAM0_ILG_INTR_MAP {
        &self.pro_pms_pro_dram0_ilg_intr_map
    }
    #[doc = "0x134 - PMS_PRO_DPORT_ILG interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pms_pro_dport_ilg_intr_map(&self) -> &PRO_PMS_PRO_DPORT_ILG_INTR_MAP {
        &self.pro_pms_pro_dport_ilg_intr_map
    }
    #[doc = "0x138 - PMS_PRO_AHB_ILG interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pms_pro_ahb_ilg_intr_map(&self) -> &PRO_PMS_PRO_AHB_ILG_INTR_MAP {
        &self.pro_pms_pro_ahb_ilg_intr_map
    }
    #[doc = "0x13c - PMS_PRO_CACHE_ILG interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pms_pro_cache_ilg_intr_map(&self) -> &PRO_PMS_PRO_CACHE_ILG_INTR_MAP {
        &self.pro_pms_pro_cache_ilg_intr_map
    }
    #[doc = "0x140 - PMS_DMA_APB_I_ILG interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pms_dma_apb_i_ilg_intr_map(&self) -> &PRO_PMS_DMA_APB_I_ILG_INTR_MAP {
        &self.pro_pms_dma_apb_i_ilg_intr_map
    }
    #[doc = "0x144 - PMS_DMA_RX_I_ILG interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pms_dma_rx_i_ilg_intr_map(&self) -> &PRO_PMS_DMA_RX_I_ILG_INTR_MAP {
        &self.pro_pms_dma_rx_i_ilg_intr_map
    }
    #[doc = "0x148 - PMS_DMA_TX_I_ILG interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_pms_dma_tx_i_ilg_intr_map(&self) -> &PRO_PMS_DMA_TX_I_ILG_INTR_MAP {
        &self.pro_pms_dma_tx_i_ilg_intr_map
    }
    #[doc = "0x14c - SPI_MEM_REJECT_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_spi_mem_reject_intr_map(&self) -> &PRO_SPI_MEM_REJECT_INTR_MAP {
        &self.pro_spi_mem_reject_intr_map
    }
    #[doc = "0x150 - DMA_COPY_INTR interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_dma_copy_intr_map(&self) -> &PRO_DMA_COPY_INTR_MAP {
        &self.pro_dma_copy_intr_map
    }
    #[doc = "0x154 - SPI4_DMA_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_spi4_dma_int_map(&self) -> &PRO_SPI4_DMA_INT_MAP {
        &self.pro_spi4_dma_int_map
    }
    #[doc = "0x158 - SPI_INTR_4 interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_spi_intr_4_map(&self) -> &PRO_SPI_INTR_4_MAP {
        &self.pro_spi_intr_4_map
    }
    #[doc = "0x15c - DCACHE_PRELOAD_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_dcache_preload_int_map(&self) -> &PRO_DCACHE_PRELOAD_INT_MAP {
        &self.pro_dcache_preload_int_map
    }
    #[doc = "0x160 - ICACHE_PRELOAD_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_icache_preload_int_map(&self) -> &PRO_ICACHE_PRELOAD_INT_MAP {
        &self.pro_icache_preload_int_map
    }
    #[doc = "0x164 - APB_ADC_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_apb_adc_int_map(&self) -> &PRO_APB_ADC_INT_MAP {
        &self.pro_apb_adc_int_map
    }
    #[doc = "0x168 - CRYPTO_DMA_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_crypto_dma_int_map(&self) -> &PRO_CRYPTO_DMA_INT_MAP {
        &self.pro_crypto_dma_int_map
    }
    #[doc = "0x16c - CPU_PERI_ERROR_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_cpu_peri_error_int_map(&self) -> &PRO_CPU_PERI_ERROR_INT_MAP {
        &self.pro_cpu_peri_error_int_map
    }
    #[doc = "0x170 - APB_PERI_ERROR_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_apb_peri_error_int_map(&self) -> &PRO_APB_PERI_ERROR_INT_MAP {
        &self.pro_apb_peri_error_int_map
    }
    #[doc = "0x174 - DCACHE_SYNC_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_dcache_sync_int_map(&self) -> &PRO_DCACHE_SYNC_INT_MAP {
        &self.pro_dcache_sync_int_map
    }
    #[doc = "0x178 - ICACHE_SYNC_INT interrupt configuration register"]
    #[inline(always)]
    pub const fn pro_icache_sync_int_map(&self) -> &PRO_ICACHE_SYNC_INT_MAP {
        &self.pro_icache_sync_int_map
    }
    #[doc = "0x17c - Interrupt status register 0"]
    #[inline(always)]
    pub const fn pro_intr_status_0(&self) -> &PRO_INTR_STATUS_0 {
        &self.pro_intr_status_0
    }
    #[doc = "0x180 - Interrupt status register 1"]
    #[inline(always)]
    pub const fn pro_intr_status_1(&self) -> &PRO_INTR_STATUS_1 {
        &self.pro_intr_status_1
    }
    #[doc = "0x184 - Interrupt status register 2"]
    #[inline(always)]
    pub const fn pro_intr_status_2(&self) -> &PRO_INTR_STATUS_2 {
        &self.pro_intr_status_2
    }
    #[doc = "0x188 - NMI interrupt signals mask register"]
    #[inline(always)]
    pub const fn clock_gate(&self) -> &CLOCK_GATE {
        &self.clock_gate
    }
    #[doc = "0xffc - Version control register"]
    #[inline(always)]
    pub const fn reg_date(&self) -> &REG_DATE {
        &self.reg_date
    }
}
#[doc = "PRO_MAC_INTR_MAP (rw) register accessor: MAC_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_mac_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_mac_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_mac_intr_map`] module"]
pub type PRO_MAC_INTR_MAP = crate::Reg<pro_mac_intr_map::PRO_MAC_INTR_MAP_SPEC>;
#[doc = "MAC_INTR interrupt configuration register"]
pub mod pro_mac_intr_map;
#[doc = "PRO_MAC_NMI_MAP (rw) register accessor: MAC_NMI interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_mac_nmi_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_mac_nmi_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_mac_nmi_map`] module"]
pub type PRO_MAC_NMI_MAP = crate::Reg<pro_mac_nmi_map::PRO_MAC_NMI_MAP_SPEC>;
#[doc = "MAC_NMI interrupt configuration register"]
pub mod pro_mac_nmi_map;
#[doc = "PRO_PWR_INTR_MAP (rw) register accessor: PWR_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pwr_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pwr_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pwr_intr_map`] module"]
pub type PRO_PWR_INTR_MAP = crate::Reg<pro_pwr_intr_map::PRO_PWR_INTR_MAP_SPEC>;
#[doc = "PWR_INTR interrupt configuration register"]
pub mod pro_pwr_intr_map;
#[doc = "PRO_BB_INT_MAP (rw) register accessor: BB_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_bb_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_bb_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_bb_int_map`] module"]
pub type PRO_BB_INT_MAP = crate::Reg<pro_bb_int_map::PRO_BB_INT_MAP_SPEC>;
#[doc = "BB_INT interrupt configuration register"]
pub mod pro_bb_int_map;
#[doc = "PRO_BT_MAC_INT_MAP (rw) register accessor: BT_MAC_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_bt_mac_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_bt_mac_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_bt_mac_int_map`] module"]
pub type PRO_BT_MAC_INT_MAP = crate::Reg<pro_bt_mac_int_map::PRO_BT_MAC_INT_MAP_SPEC>;
#[doc = "BT_MAC_INT interrupt configuration register"]
pub mod pro_bt_mac_int_map;
#[doc = "PRO_BT_BB_INT_MAP (rw) register accessor: BT_BB_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_bt_bb_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_bt_bb_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_bt_bb_int_map`] module"]
pub type PRO_BT_BB_INT_MAP = crate::Reg<pro_bt_bb_int_map::PRO_BT_BB_INT_MAP_SPEC>;
#[doc = "BT_BB_INT interrupt configuration register"]
pub mod pro_bt_bb_int_map;
#[doc = "PRO_BT_BB_NMI_MAP (rw) register accessor: BT_BB_NMI interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_bt_bb_nmi_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_bt_bb_nmi_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_bt_bb_nmi_map`] module"]
pub type PRO_BT_BB_NMI_MAP = crate::Reg<pro_bt_bb_nmi_map::PRO_BT_BB_NMI_MAP_SPEC>;
#[doc = "BT_BB_NMI interrupt configuration register"]
pub mod pro_bt_bb_nmi_map;
#[doc = "PRO_RWBT_IRQ_MAP (rw) register accessor: RWBT_IRQ interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_rwbt_irq_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_rwbt_irq_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_rwbt_irq_map`] module"]
pub type PRO_RWBT_IRQ_MAP = crate::Reg<pro_rwbt_irq_map::PRO_RWBT_IRQ_MAP_SPEC>;
#[doc = "RWBT_IRQ interrupt configuration register"]
pub mod pro_rwbt_irq_map;
#[doc = "PRO_RWBLE_IRQ_MAP (rw) register accessor: RWBLE_IRQ interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_rwble_irq_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_rwble_irq_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_rwble_irq_map`] module"]
pub type PRO_RWBLE_IRQ_MAP = crate::Reg<pro_rwble_irq_map::PRO_RWBLE_IRQ_MAP_SPEC>;
#[doc = "RWBLE_IRQ interrupt configuration register"]
pub mod pro_rwble_irq_map;
#[doc = "PRO_RWBT_NMI_MAP (rw) register accessor: RWBT_NMI interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_rwbt_nmi_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_rwbt_nmi_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_rwbt_nmi_map`] module"]
pub type PRO_RWBT_NMI_MAP = crate::Reg<pro_rwbt_nmi_map::PRO_RWBT_NMI_MAP_SPEC>;
#[doc = "RWBT_NMI interrupt configuration register"]
pub mod pro_rwbt_nmi_map;
#[doc = "PRO_RWBLE_NMI_MAP (rw) register accessor: RWBLE_NMI interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_rwble_nmi_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_rwble_nmi_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_rwble_nmi_map`] module"]
pub type PRO_RWBLE_NMI_MAP = crate::Reg<pro_rwble_nmi_map::PRO_RWBLE_NMI_MAP_SPEC>;
#[doc = "RWBLE_NMI interrupt configuration register"]
pub mod pro_rwble_nmi_map;
#[doc = "PRO_SLC0_INTR_MAP (rw) register accessor: SLC0_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_slc0_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_slc0_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_slc0_intr_map`] module"]
pub type PRO_SLC0_INTR_MAP = crate::Reg<pro_slc0_intr_map::PRO_SLC0_INTR_MAP_SPEC>;
#[doc = "SLC0_INTR interrupt configuration register"]
pub mod pro_slc0_intr_map;
#[doc = "PRO_SLC1_INTR_MAP (rw) register accessor: SLC1_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_slc1_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_slc1_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_slc1_intr_map`] module"]
pub type PRO_SLC1_INTR_MAP = crate::Reg<pro_slc1_intr_map::PRO_SLC1_INTR_MAP_SPEC>;
#[doc = "SLC1_INTR interrupt configuration register"]
pub mod pro_slc1_intr_map;
#[doc = "PRO_UHCI0_INTR_MAP (rw) register accessor: UHCI0_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_uhci0_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_uhci0_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_uhci0_intr_map`] module"]
pub type PRO_UHCI0_INTR_MAP = crate::Reg<pro_uhci0_intr_map::PRO_UHCI0_INTR_MAP_SPEC>;
#[doc = "UHCI0_INTR interrupt configuration register"]
pub mod pro_uhci0_intr_map;
#[doc = "PRO_UHCI1_INTR_MAP (rw) register accessor: UHCI1_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_uhci1_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_uhci1_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_uhci1_intr_map`] module"]
pub type PRO_UHCI1_INTR_MAP = crate::Reg<pro_uhci1_intr_map::PRO_UHCI1_INTR_MAP_SPEC>;
#[doc = "UHCI1_INTR interrupt configuration register"]
pub mod pro_uhci1_intr_map;
#[doc = "PRO_TG_T0_LEVEL_INT_MAP (rw) register accessor: TG_T0_LEVEL_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg_t0_level_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg_t0_level_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg_t0_level_int_map`] module"]
pub type PRO_TG_T0_LEVEL_INT_MAP =
    crate::Reg<pro_tg_t0_level_int_map::PRO_TG_T0_LEVEL_INT_MAP_SPEC>;
#[doc = "TG_T0_LEVEL_INT interrupt configuration register"]
pub mod pro_tg_t0_level_int_map;
#[doc = "PRO_TG_T1_LEVEL_INT_MAP (rw) register accessor: TG_T1_LEVEL_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg_t1_level_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg_t1_level_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg_t1_level_int_map`] module"]
pub type PRO_TG_T1_LEVEL_INT_MAP =
    crate::Reg<pro_tg_t1_level_int_map::PRO_TG_T1_LEVEL_INT_MAP_SPEC>;
#[doc = "TG_T1_LEVEL_INT interrupt configuration register"]
pub mod pro_tg_t1_level_int_map;
#[doc = "PRO_TG_WDT_LEVEL_INT_MAP (rw) register accessor: TG_WDT_LEVEL_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg_wdt_level_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg_wdt_level_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg_wdt_level_int_map`] module"]
pub type PRO_TG_WDT_LEVEL_INT_MAP =
    crate::Reg<pro_tg_wdt_level_int_map::PRO_TG_WDT_LEVEL_INT_MAP_SPEC>;
#[doc = "TG_WDT_LEVEL_INT interrupt configuration register"]
pub mod pro_tg_wdt_level_int_map;
#[doc = "PRO_TG_LACT_LEVEL_INT_MAP (rw) register accessor: TG_LACT_LEVEL_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg_lact_level_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg_lact_level_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg_lact_level_int_map`] module"]
pub type PRO_TG_LACT_LEVEL_INT_MAP =
    crate::Reg<pro_tg_lact_level_int_map::PRO_TG_LACT_LEVEL_INT_MAP_SPEC>;
#[doc = "TG_LACT_LEVEL_INT interrupt configuration register"]
pub mod pro_tg_lact_level_int_map;
#[doc = "PRO_TG1_T0_LEVEL_INT_MAP (rw) register accessor: TG1_T0_LEVEL_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg1_t0_level_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg1_t0_level_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg1_t0_level_int_map`] module"]
pub type PRO_TG1_T0_LEVEL_INT_MAP =
    crate::Reg<pro_tg1_t0_level_int_map::PRO_TG1_T0_LEVEL_INT_MAP_SPEC>;
#[doc = "TG1_T0_LEVEL_INT interrupt configuration register"]
pub mod pro_tg1_t0_level_int_map;
#[doc = "PRO_TG1_T1_LEVEL_INT_MAP (rw) register accessor: TG1_T1_LEVEL_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg1_t1_level_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg1_t1_level_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg1_t1_level_int_map`] module"]
pub type PRO_TG1_T1_LEVEL_INT_MAP =
    crate::Reg<pro_tg1_t1_level_int_map::PRO_TG1_T1_LEVEL_INT_MAP_SPEC>;
#[doc = "TG1_T1_LEVEL_INT interrupt configuration register"]
pub mod pro_tg1_t1_level_int_map;
#[doc = "PRO_TG1_WDT_LEVEL_INT_MAP (rw) register accessor: TG1_WDT_LEVEL_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg1_wdt_level_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg1_wdt_level_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg1_wdt_level_int_map`] module"]
pub type PRO_TG1_WDT_LEVEL_INT_MAP =
    crate::Reg<pro_tg1_wdt_level_int_map::PRO_TG1_WDT_LEVEL_INT_MAP_SPEC>;
#[doc = "TG1_WDT_LEVEL_INT interrupt configuration register"]
pub mod pro_tg1_wdt_level_int_map;
#[doc = "PRO_TG1_LACT_LEVEL_INT_MAP (rw) register accessor: TG1_LACT_LEVEL_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg1_lact_level_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg1_lact_level_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg1_lact_level_int_map`] module"]
pub type PRO_TG1_LACT_LEVEL_INT_MAP =
    crate::Reg<pro_tg1_lact_level_int_map::PRO_TG1_LACT_LEVEL_INT_MAP_SPEC>;
#[doc = "TG1_LACT_LEVEL_INT interrupt configuration register"]
pub mod pro_tg1_lact_level_int_map;
#[doc = "PRO_GPIO_INTERRUPT_PRO_MAP (rw) register accessor: GPIO_INTERRUPT_PRO interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_gpio_interrupt_pro_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_gpio_interrupt_pro_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_gpio_interrupt_pro_map`] module"]
pub type PRO_GPIO_INTERRUPT_PRO_MAP =
    crate::Reg<pro_gpio_interrupt_pro_map::PRO_GPIO_INTERRUPT_PRO_MAP_SPEC>;
#[doc = "GPIO_INTERRUPT_PRO interrupt configuration register"]
pub mod pro_gpio_interrupt_pro_map;
#[doc = "PRO_GPIO_INTERRUPT_PRO_NMI_MAP (rw) register accessor: GPIO_INTERRUPT_PRO_NMI interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_gpio_interrupt_pro_nmi_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_gpio_interrupt_pro_nmi_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_gpio_interrupt_pro_nmi_map`] module"]
pub type PRO_GPIO_INTERRUPT_PRO_NMI_MAP =
    crate::Reg<pro_gpio_interrupt_pro_nmi_map::PRO_GPIO_INTERRUPT_PRO_NMI_MAP_SPEC>;
#[doc = "GPIO_INTERRUPT_PRO_NMI interrupt configuration register"]
pub mod pro_gpio_interrupt_pro_nmi_map;
#[doc = "PRO_GPIO_INTERRUPT_APP_MAP (rw) register accessor: GPIO_INTERRUPT_APP interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_gpio_interrupt_app_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_gpio_interrupt_app_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_gpio_interrupt_app_map`] module"]
pub type PRO_GPIO_INTERRUPT_APP_MAP =
    crate::Reg<pro_gpio_interrupt_app_map::PRO_GPIO_INTERRUPT_APP_MAP_SPEC>;
#[doc = "GPIO_INTERRUPT_APP interrupt configuration register"]
pub mod pro_gpio_interrupt_app_map;
#[doc = "PRO_GPIO_INTERRUPT_APP_NMI_MAP (rw) register accessor: GPIO_INTERRUPT_APP_NMI interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_gpio_interrupt_app_nmi_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_gpio_interrupt_app_nmi_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_gpio_interrupt_app_nmi_map`] module"]
pub type PRO_GPIO_INTERRUPT_APP_NMI_MAP =
    crate::Reg<pro_gpio_interrupt_app_nmi_map::PRO_GPIO_INTERRUPT_APP_NMI_MAP_SPEC>;
#[doc = "GPIO_INTERRUPT_APP_NMI interrupt configuration register"]
pub mod pro_gpio_interrupt_app_nmi_map;
#[doc = "PRO_DEDICATED_GPIO_IN_INTR_MAP (rw) register accessor: DEDICATED_GPIO_IN_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_dedicated_gpio_in_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_dedicated_gpio_in_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_dedicated_gpio_in_intr_map`] module"]
pub type PRO_DEDICATED_GPIO_IN_INTR_MAP =
    crate::Reg<pro_dedicated_gpio_in_intr_map::PRO_DEDICATED_GPIO_IN_INTR_MAP_SPEC>;
#[doc = "DEDICATED_GPIO_IN_INTR interrupt configuration register"]
pub mod pro_dedicated_gpio_in_intr_map;
#[doc = "PRO_CPU_INTR_FROM_CPU_0_MAP (rw) register accessor: CPU_INTR_FROM_CPU_0 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_cpu_intr_from_cpu_0_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_cpu_intr_from_cpu_0_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_cpu_intr_from_cpu_0_map`] module"]
pub type PRO_CPU_INTR_FROM_CPU_0_MAP =
    crate::Reg<pro_cpu_intr_from_cpu_0_map::PRO_CPU_INTR_FROM_CPU_0_MAP_SPEC>;
#[doc = "CPU_INTR_FROM_CPU_0 interrupt configuration register"]
pub mod pro_cpu_intr_from_cpu_0_map;
#[doc = "PRO_CPU_INTR_FROM_CPU_1_MAP (rw) register accessor: CPU_INTR_FROM_CPU_1 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_cpu_intr_from_cpu_1_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_cpu_intr_from_cpu_1_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_cpu_intr_from_cpu_1_map`] module"]
pub type PRO_CPU_INTR_FROM_CPU_1_MAP =
    crate::Reg<pro_cpu_intr_from_cpu_1_map::PRO_CPU_INTR_FROM_CPU_1_MAP_SPEC>;
#[doc = "CPU_INTR_FROM_CPU_1 interrupt configuration register"]
pub mod pro_cpu_intr_from_cpu_1_map;
#[doc = "PRO_CPU_INTR_FROM_CPU_2_MAP (rw) register accessor: CPU_INTR_FROM_CPU_2 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_cpu_intr_from_cpu_2_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_cpu_intr_from_cpu_2_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_cpu_intr_from_cpu_2_map`] module"]
pub type PRO_CPU_INTR_FROM_CPU_2_MAP =
    crate::Reg<pro_cpu_intr_from_cpu_2_map::PRO_CPU_INTR_FROM_CPU_2_MAP_SPEC>;
#[doc = "CPU_INTR_FROM_CPU_2 interrupt configuration register"]
pub mod pro_cpu_intr_from_cpu_2_map;
#[doc = "PRO_CPU_INTR_FROM_CPU_3_MAP (rw) register accessor: CPU_INTR_FROM_CPU_3 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_cpu_intr_from_cpu_3_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_cpu_intr_from_cpu_3_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_cpu_intr_from_cpu_3_map`] module"]
pub type PRO_CPU_INTR_FROM_CPU_3_MAP =
    crate::Reg<pro_cpu_intr_from_cpu_3_map::PRO_CPU_INTR_FROM_CPU_3_MAP_SPEC>;
#[doc = "CPU_INTR_FROM_CPU_3 interrupt configuration register"]
pub mod pro_cpu_intr_from_cpu_3_map;
#[doc = "PRO_SPI_INTR_1_MAP (rw) register accessor: SPI_INTR_1 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_spi_intr_1_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_spi_intr_1_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_spi_intr_1_map`] module"]
pub type PRO_SPI_INTR_1_MAP = crate::Reg<pro_spi_intr_1_map::PRO_SPI_INTR_1_MAP_SPEC>;
#[doc = "SPI_INTR_1 interrupt configuration register"]
pub mod pro_spi_intr_1_map;
#[doc = "PRO_SPI_INTR_2_MAP (rw) register accessor: SPI_INTR_2 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_spi_intr_2_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_spi_intr_2_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_spi_intr_2_map`] module"]
pub type PRO_SPI_INTR_2_MAP = crate::Reg<pro_spi_intr_2_map::PRO_SPI_INTR_2_MAP_SPEC>;
#[doc = "SPI_INTR_2 interrupt configuration register"]
pub mod pro_spi_intr_2_map;
#[doc = "PRO_SPI_INTR_3_MAP (rw) register accessor: SPI_INTR_3 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_spi_intr_3_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_spi_intr_3_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_spi_intr_3_map`] module"]
pub type PRO_SPI_INTR_3_MAP = crate::Reg<pro_spi_intr_3_map::PRO_SPI_INTR_3_MAP_SPEC>;
#[doc = "SPI_INTR_3 interrupt configuration register"]
pub mod pro_spi_intr_3_map;
#[doc = "PRO_I2S0_INT_MAP (rw) register accessor: I2S0_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_i2s0_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_i2s0_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_i2s0_int_map`] module"]
pub type PRO_I2S0_INT_MAP = crate::Reg<pro_i2s0_int_map::PRO_I2S0_INT_MAP_SPEC>;
#[doc = "I2S0_INT interrupt configuration register"]
pub mod pro_i2s0_int_map;
#[doc = "PRO_I2S1_INT_MAP (rw) register accessor: I2S1_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_i2s1_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_i2s1_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_i2s1_int_map`] module"]
pub type PRO_I2S1_INT_MAP = crate::Reg<pro_i2s1_int_map::PRO_I2S1_INT_MAP_SPEC>;
#[doc = "I2S1_INT interrupt configuration register"]
pub mod pro_i2s1_int_map;
#[doc = "PRO_UART_INTR_MAP (rw) register accessor: UART_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_uart_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_uart_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_uart_intr_map`] module"]
pub type PRO_UART_INTR_MAP = crate::Reg<pro_uart_intr_map::PRO_UART_INTR_MAP_SPEC>;
#[doc = "UART_INT interrupt configuration register"]
pub mod pro_uart_intr_map;
#[doc = "PRO_UART1_INTR_MAP (rw) register accessor: UART1_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_uart1_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_uart1_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_uart1_intr_map`] module"]
pub type PRO_UART1_INTR_MAP = crate::Reg<pro_uart1_intr_map::PRO_UART1_INTR_MAP_SPEC>;
#[doc = "UART1_INT interrupt configuration register"]
pub mod pro_uart1_intr_map;
#[doc = "PRO_UART2_INTR_MAP (rw) register accessor: UART2_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_uart2_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_uart2_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_uart2_intr_map`] module"]
pub type PRO_UART2_INTR_MAP = crate::Reg<pro_uart2_intr_map::PRO_UART2_INTR_MAP_SPEC>;
#[doc = "UART2_INT interrupt configuration register"]
pub mod pro_uart2_intr_map;
#[doc = "PRO_SDIO_HOST_INTERRUPT_MAP (rw) register accessor: SDIO_HOST_INTERRUPT configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_sdio_host_interrupt_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_sdio_host_interrupt_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_sdio_host_interrupt_map`] module"]
pub type PRO_SDIO_HOST_INTERRUPT_MAP =
    crate::Reg<pro_sdio_host_interrupt_map::PRO_SDIO_HOST_INTERRUPT_MAP_SPEC>;
#[doc = "SDIO_HOST_INTERRUPT configuration register"]
pub mod pro_sdio_host_interrupt_map;
#[doc = "PRO_PWM0_INTR_MAP (rw) register accessor: PWM0_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pwm0_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pwm0_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pwm0_intr_map`] module"]
pub type PRO_PWM0_INTR_MAP = crate::Reg<pro_pwm0_intr_map::PRO_PWM0_INTR_MAP_SPEC>;
#[doc = "PWM0_INTR interrupt configuration register"]
pub mod pro_pwm0_intr_map;
#[doc = "PRO_PWM1_INTR_MAP (rw) register accessor: PWM1_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pwm1_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pwm1_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pwm1_intr_map`] module"]
pub type PRO_PWM1_INTR_MAP = crate::Reg<pro_pwm1_intr_map::PRO_PWM1_INTR_MAP_SPEC>;
#[doc = "PWM1_INTR interrupt configuration register"]
pub mod pro_pwm1_intr_map;
#[doc = "PRO_PWM2_INTR_MAP (rw) register accessor: PWM2_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pwm2_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pwm2_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pwm2_intr_map`] module"]
pub type PRO_PWM2_INTR_MAP = crate::Reg<pro_pwm2_intr_map::PRO_PWM2_INTR_MAP_SPEC>;
#[doc = "PWM2_INTR interrupt configuration register"]
pub mod pro_pwm2_intr_map;
#[doc = "PRO_PWM3_INTR_MAP (rw) register accessor: PWM3_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pwm3_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pwm3_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pwm3_intr_map`] module"]
pub type PRO_PWM3_INTR_MAP = crate::Reg<pro_pwm3_intr_map::PRO_PWM3_INTR_MAP_SPEC>;
#[doc = "PWM3_INTR interrupt configuration register"]
pub mod pro_pwm3_intr_map;
#[doc = "PRO_LEDC_INT_MAP (rw) register accessor: LEDC_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_ledc_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_ledc_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_ledc_int_map`] module"]
pub type PRO_LEDC_INT_MAP = crate::Reg<pro_ledc_int_map::PRO_LEDC_INT_MAP_SPEC>;
#[doc = "LEDC_INTR interrupt configuration register"]
pub mod pro_ledc_int_map;
#[doc = "PRO_EFUSE_INT_MAP (rw) register accessor: EFUSE_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_efuse_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_efuse_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_efuse_int_map`] module"]
pub type PRO_EFUSE_INT_MAP = crate::Reg<pro_efuse_int_map::PRO_EFUSE_INT_MAP_SPEC>;
#[doc = "EFUSE_INT interrupt configuration register"]
pub mod pro_efuse_int_map;
#[doc = "PRO_CAN_INT_MAP (rw) register accessor: CAN_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_can_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_can_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_can_int_map`] module"]
pub type PRO_CAN_INT_MAP = crate::Reg<pro_can_int_map::PRO_CAN_INT_MAP_SPEC>;
#[doc = "CAN_INT interrupt configuration register"]
pub mod pro_can_int_map;
#[doc = "PRO_USB_INTR_MAP (rw) register accessor: USB_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_usb_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_usb_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_usb_intr_map`] module"]
pub type PRO_USB_INTR_MAP = crate::Reg<pro_usb_intr_map::PRO_USB_INTR_MAP_SPEC>;
#[doc = "USB_INT interrupt configuration register"]
pub mod pro_usb_intr_map;
#[doc = "PRO_RTC_CORE_INTR_MAP (rw) register accessor: RTC_CORE_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_rtc_core_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_rtc_core_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_rtc_core_intr_map`] module"]
pub type PRO_RTC_CORE_INTR_MAP = crate::Reg<pro_rtc_core_intr_map::PRO_RTC_CORE_INTR_MAP_SPEC>;
#[doc = "RTC_CORE_INTR interrupt configuration register"]
pub mod pro_rtc_core_intr_map;
#[doc = "PRO_RMT_INTR_MAP (rw) register accessor: RMT_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_rmt_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_rmt_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_rmt_intr_map`] module"]
pub type PRO_RMT_INTR_MAP = crate::Reg<pro_rmt_intr_map::PRO_RMT_INTR_MAP_SPEC>;
#[doc = "RMT_INTR interrupt configuration register"]
pub mod pro_rmt_intr_map;
#[doc = "PRO_PCNT_INTR_MAP (rw) register accessor: PCNT_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pcnt_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pcnt_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pcnt_intr_map`] module"]
pub type PRO_PCNT_INTR_MAP = crate::Reg<pro_pcnt_intr_map::PRO_PCNT_INTR_MAP_SPEC>;
#[doc = "PCNT_INTR interrupt configuration register"]
pub mod pro_pcnt_intr_map;
#[doc = "PRO_I2C_EXT0_INTR_MAP (rw) register accessor: I2C_EXT0_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_i2c_ext0_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_i2c_ext0_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_i2c_ext0_intr_map`] module"]
pub type PRO_I2C_EXT0_INTR_MAP = crate::Reg<pro_i2c_ext0_intr_map::PRO_I2C_EXT0_INTR_MAP_SPEC>;
#[doc = "I2C_EXT0_INTR interrupt configuration register"]
pub mod pro_i2c_ext0_intr_map;
#[doc = "PRO_I2C_EXT1_INTR_MAP (rw) register accessor: I2C_EXT1_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_i2c_ext1_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_i2c_ext1_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_i2c_ext1_intr_map`] module"]
pub type PRO_I2C_EXT1_INTR_MAP = crate::Reg<pro_i2c_ext1_intr_map::PRO_I2C_EXT1_INTR_MAP_SPEC>;
#[doc = "I2C_EXT1_INTR interrupt configuration register"]
pub mod pro_i2c_ext1_intr_map;
#[doc = "PRO_RSA_INTR_MAP (rw) register accessor: RSA_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_rsa_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_rsa_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_rsa_intr_map`] module"]
pub type PRO_RSA_INTR_MAP = crate::Reg<pro_rsa_intr_map::PRO_RSA_INTR_MAP_SPEC>;
#[doc = "RSA_INTR interrupt configuration register"]
pub mod pro_rsa_intr_map;
#[doc = "PRO_SHA_INTR_MAP (rw) register accessor: SHA_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_sha_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_sha_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_sha_intr_map`] module"]
pub type PRO_SHA_INTR_MAP = crate::Reg<pro_sha_intr_map::PRO_SHA_INTR_MAP_SPEC>;
#[doc = "SHA_INTR interrupt configuration register"]
pub mod pro_sha_intr_map;
#[doc = "PRO_AES_INTR_MAP (rw) register accessor: AES_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_aes_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_aes_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_aes_intr_map`] module"]
pub type PRO_AES_INTR_MAP = crate::Reg<pro_aes_intr_map::PRO_AES_INTR_MAP_SPEC>;
#[doc = "AES_INTR interrupt configuration register"]
pub mod pro_aes_intr_map;
#[doc = "PRO_SPI2_DMA_INT_MAP (rw) register accessor: SPI2_DMA_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_spi2_dma_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_spi2_dma_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_spi2_dma_int_map`] module"]
pub type PRO_SPI2_DMA_INT_MAP = crate::Reg<pro_spi2_dma_int_map::PRO_SPI2_DMA_INT_MAP_SPEC>;
#[doc = "SPI2_DMA_INT interrupt configuration register"]
pub mod pro_spi2_dma_int_map;
#[doc = "PRO_SPI3_DMA_INT_MAP (rw) register accessor: SPI3_DMA_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_spi3_dma_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_spi3_dma_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_spi3_dma_int_map`] module"]
pub type PRO_SPI3_DMA_INT_MAP = crate::Reg<pro_spi3_dma_int_map::PRO_SPI3_DMA_INT_MAP_SPEC>;
#[doc = "SPI3_DMA_INT interrupt configuration register"]
pub mod pro_spi3_dma_int_map;
#[doc = "PRO_WDG_INT_MAP (rw) register accessor: WDG_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_wdg_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_wdg_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_wdg_int_map`] module"]
pub type PRO_WDG_INT_MAP = crate::Reg<pro_wdg_int_map::PRO_WDG_INT_MAP_SPEC>;
#[doc = "WDG_INT interrupt configuration register"]
pub mod pro_wdg_int_map;
#[doc = "PRO_TIMER_INT1_MAP (rw) register accessor: TIMER_INT1 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_timer_int1_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_timer_int1_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_timer_int1_map`] module"]
pub type PRO_TIMER_INT1_MAP = crate::Reg<pro_timer_int1_map::PRO_TIMER_INT1_MAP_SPEC>;
#[doc = "TIMER_INT1 interrupt configuration register"]
pub mod pro_timer_int1_map;
#[doc = "PRO_TIMER_INT2_MAP (rw) register accessor: TIMER_INT2 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_timer_int2_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_timer_int2_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_timer_int2_map`] module"]
pub type PRO_TIMER_INT2_MAP = crate::Reg<pro_timer_int2_map::PRO_TIMER_INT2_MAP_SPEC>;
#[doc = "TIMER_INT2 interrupt configuration register"]
pub mod pro_timer_int2_map;
#[doc = "PRO_TG_T0_EDGE_INT_MAP (rw) register accessor: TG_T0_EDGE_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg_t0_edge_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg_t0_edge_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg_t0_edge_int_map`] module"]
pub type PRO_TG_T0_EDGE_INT_MAP = crate::Reg<pro_tg_t0_edge_int_map::PRO_TG_T0_EDGE_INT_MAP_SPEC>;
#[doc = "TG_T0_EDGE_INT interrupt configuration register"]
pub mod pro_tg_t0_edge_int_map;
#[doc = "PRO_TG_T1_EDGE_INT_MAP (rw) register accessor: TG_T1_EDGE_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg_t1_edge_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg_t1_edge_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg_t1_edge_int_map`] module"]
pub type PRO_TG_T1_EDGE_INT_MAP = crate::Reg<pro_tg_t1_edge_int_map::PRO_TG_T1_EDGE_INT_MAP_SPEC>;
#[doc = "TG_T1_EDGE_INT interrupt configuration register"]
pub mod pro_tg_t1_edge_int_map;
#[doc = "PRO_TG_WDT_EDGE_INT_MAP (rw) register accessor: TG_WDT_EDGE_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg_wdt_edge_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg_wdt_edge_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg_wdt_edge_int_map`] module"]
pub type PRO_TG_WDT_EDGE_INT_MAP =
    crate::Reg<pro_tg_wdt_edge_int_map::PRO_TG_WDT_EDGE_INT_MAP_SPEC>;
#[doc = "TG_WDT_EDGE_INT interrupt configuration register"]
pub mod pro_tg_wdt_edge_int_map;
#[doc = "PRO_TG_LACT_EDGE_INT_MAP (rw) register accessor: TG_LACT_EDGE_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg_lact_edge_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg_lact_edge_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg_lact_edge_int_map`] module"]
pub type PRO_TG_LACT_EDGE_INT_MAP =
    crate::Reg<pro_tg_lact_edge_int_map::PRO_TG_LACT_EDGE_INT_MAP_SPEC>;
#[doc = "TG_LACT_EDGE_INT interrupt configuration register"]
pub mod pro_tg_lact_edge_int_map;
#[doc = "PRO_TG1_T0_EDGE_INT_MAP (rw) register accessor: TG1_T0_EDGE_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg1_t0_edge_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg1_t0_edge_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg1_t0_edge_int_map`] module"]
pub type PRO_TG1_T0_EDGE_INT_MAP =
    crate::Reg<pro_tg1_t0_edge_int_map::PRO_TG1_T0_EDGE_INT_MAP_SPEC>;
#[doc = "TG1_T0_EDGE_INT interrupt configuration register"]
pub mod pro_tg1_t0_edge_int_map;
#[doc = "PRO_TG1_T1_EDGE_INT_MAP (rw) register accessor: TG1_T1_EDGE_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg1_t1_edge_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg1_t1_edge_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg1_t1_edge_int_map`] module"]
pub type PRO_TG1_T1_EDGE_INT_MAP =
    crate::Reg<pro_tg1_t1_edge_int_map::PRO_TG1_T1_EDGE_INT_MAP_SPEC>;
#[doc = "TG1_T1_EDGE_INT interrupt configuration register"]
pub mod pro_tg1_t1_edge_int_map;
#[doc = "PRO_TG1_WDT_EDGE_INT_MAP (rw) register accessor: TG1_WDT_EDGE_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg1_wdt_edge_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg1_wdt_edge_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg1_wdt_edge_int_map`] module"]
pub type PRO_TG1_WDT_EDGE_INT_MAP =
    crate::Reg<pro_tg1_wdt_edge_int_map::PRO_TG1_WDT_EDGE_INT_MAP_SPEC>;
#[doc = "TG1_WDT_EDGE_INT interrupt configuration register"]
pub mod pro_tg1_wdt_edge_int_map;
#[doc = "PRO_TG1_LACT_EDGE_INT_MAP (rw) register accessor: TG1_LACT_EDGE_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_tg1_lact_edge_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_tg1_lact_edge_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_tg1_lact_edge_int_map`] module"]
pub type PRO_TG1_LACT_EDGE_INT_MAP =
    crate::Reg<pro_tg1_lact_edge_int_map::PRO_TG1_LACT_EDGE_INT_MAP_SPEC>;
#[doc = "TG1_LACT_EDGE_INT interrupt configuration register"]
pub mod pro_tg1_lact_edge_int_map;
#[doc = "PRO_CACHE_IA_INT_MAP (rw) register accessor: CACHE_IA_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_cache_ia_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_cache_ia_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_cache_ia_int_map`] module"]
pub type PRO_CACHE_IA_INT_MAP = crate::Reg<pro_cache_ia_int_map::PRO_CACHE_IA_INT_MAP_SPEC>;
#[doc = "CACHE_IA_INT interrupt configuration register"]
pub mod pro_cache_ia_int_map;
#[doc = "PRO_SYSTIMER_TARGET0_INT_MAP (rw) register accessor: SYSTIMER_TARGET0_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_systimer_target0_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_systimer_target0_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_systimer_target0_int_map`] module"]
pub type PRO_SYSTIMER_TARGET0_INT_MAP =
    crate::Reg<pro_systimer_target0_int_map::PRO_SYSTIMER_TARGET0_INT_MAP_SPEC>;
#[doc = "SYSTIMER_TARGET0_INT interrupt configuration register"]
pub mod pro_systimer_target0_int_map;
#[doc = "PRO_SYSTIMER_TARGET1_INT_MAP (rw) register accessor: SYSTIMER_TARGET1_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_systimer_target1_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_systimer_target1_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_systimer_target1_int_map`] module"]
pub type PRO_SYSTIMER_TARGET1_INT_MAP =
    crate::Reg<pro_systimer_target1_int_map::PRO_SYSTIMER_TARGET1_INT_MAP_SPEC>;
#[doc = "SYSTIMER_TARGET1_INT interrupt configuration register"]
pub mod pro_systimer_target1_int_map;
#[doc = "PRO_SYSTIMER_TARGET2_INT_MAP (rw) register accessor: SYSTIMER_TARGET2_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_systimer_target2_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_systimer_target2_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_systimer_target2_int_map`] module"]
pub type PRO_SYSTIMER_TARGET2_INT_MAP =
    crate::Reg<pro_systimer_target2_int_map::PRO_SYSTIMER_TARGET2_INT_MAP_SPEC>;
#[doc = "SYSTIMER_TARGET2_INT interrupt configuration register"]
pub mod pro_systimer_target2_int_map;
#[doc = "PRO_ASSIST_DEBUG_INTR_MAP (rw) register accessor: ASSIST_DEBUG_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_assist_debug_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_assist_debug_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_assist_debug_intr_map`] module"]
pub type PRO_ASSIST_DEBUG_INTR_MAP =
    crate::Reg<pro_assist_debug_intr_map::PRO_ASSIST_DEBUG_INTR_MAP_SPEC>;
#[doc = "ASSIST_DEBUG_INTR interrupt configuration register"]
pub mod pro_assist_debug_intr_map;
#[doc = "PRO_PMS_PRO_IRAM0_ILG_INTR_MAP (rw) register accessor: PMS_PRO_IRAM0_ILG interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pms_pro_iram0_ilg_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pms_pro_iram0_ilg_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pms_pro_iram0_ilg_intr_map`] module"]
pub type PRO_PMS_PRO_IRAM0_ILG_INTR_MAP =
    crate::Reg<pro_pms_pro_iram0_ilg_intr_map::PRO_PMS_PRO_IRAM0_ILG_INTR_MAP_SPEC>;
#[doc = "PMS_PRO_IRAM0_ILG interrupt configuration register"]
pub mod pro_pms_pro_iram0_ilg_intr_map;
#[doc = "PRO_PMS_PRO_DRAM0_ILG_INTR_MAP (rw) register accessor: PMS_PRO_DRAM0_ILG interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pms_pro_dram0_ilg_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pms_pro_dram0_ilg_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pms_pro_dram0_ilg_intr_map`] module"]
pub type PRO_PMS_PRO_DRAM0_ILG_INTR_MAP =
    crate::Reg<pro_pms_pro_dram0_ilg_intr_map::PRO_PMS_PRO_DRAM0_ILG_INTR_MAP_SPEC>;
#[doc = "PMS_PRO_DRAM0_ILG interrupt configuration register"]
pub mod pro_pms_pro_dram0_ilg_intr_map;
#[doc = "PRO_PMS_PRO_DPORT_ILG_INTR_MAP (rw) register accessor: PMS_PRO_DPORT_ILG interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pms_pro_dport_ilg_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pms_pro_dport_ilg_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pms_pro_dport_ilg_intr_map`] module"]
pub type PRO_PMS_PRO_DPORT_ILG_INTR_MAP =
    crate::Reg<pro_pms_pro_dport_ilg_intr_map::PRO_PMS_PRO_DPORT_ILG_INTR_MAP_SPEC>;
#[doc = "PMS_PRO_DPORT_ILG interrupt configuration register"]
pub mod pro_pms_pro_dport_ilg_intr_map;
#[doc = "PRO_PMS_PRO_AHB_ILG_INTR_MAP (rw) register accessor: PMS_PRO_AHB_ILG interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pms_pro_ahb_ilg_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pms_pro_ahb_ilg_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pms_pro_ahb_ilg_intr_map`] module"]
pub type PRO_PMS_PRO_AHB_ILG_INTR_MAP =
    crate::Reg<pro_pms_pro_ahb_ilg_intr_map::PRO_PMS_PRO_AHB_ILG_INTR_MAP_SPEC>;
#[doc = "PMS_PRO_AHB_ILG interrupt configuration register"]
pub mod pro_pms_pro_ahb_ilg_intr_map;
#[doc = "PRO_PMS_PRO_CACHE_ILG_INTR_MAP (rw) register accessor: PMS_PRO_CACHE_ILG interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pms_pro_cache_ilg_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pms_pro_cache_ilg_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pms_pro_cache_ilg_intr_map`] module"]
pub type PRO_PMS_PRO_CACHE_ILG_INTR_MAP =
    crate::Reg<pro_pms_pro_cache_ilg_intr_map::PRO_PMS_PRO_CACHE_ILG_INTR_MAP_SPEC>;
#[doc = "PMS_PRO_CACHE_ILG interrupt configuration register"]
pub mod pro_pms_pro_cache_ilg_intr_map;
#[doc = "PRO_PMS_DMA_APB_I_ILG_INTR_MAP (rw) register accessor: PMS_DMA_APB_I_ILG interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pms_dma_apb_i_ilg_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pms_dma_apb_i_ilg_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pms_dma_apb_i_ilg_intr_map`] module"]
pub type PRO_PMS_DMA_APB_I_ILG_INTR_MAP =
    crate::Reg<pro_pms_dma_apb_i_ilg_intr_map::PRO_PMS_DMA_APB_I_ILG_INTR_MAP_SPEC>;
#[doc = "PMS_DMA_APB_I_ILG interrupt configuration register"]
pub mod pro_pms_dma_apb_i_ilg_intr_map;
#[doc = "PRO_PMS_DMA_RX_I_ILG_INTR_MAP (rw) register accessor: PMS_DMA_RX_I_ILG interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pms_dma_rx_i_ilg_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pms_dma_rx_i_ilg_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pms_dma_rx_i_ilg_intr_map`] module"]
pub type PRO_PMS_DMA_RX_I_ILG_INTR_MAP =
    crate::Reg<pro_pms_dma_rx_i_ilg_intr_map::PRO_PMS_DMA_RX_I_ILG_INTR_MAP_SPEC>;
#[doc = "PMS_DMA_RX_I_ILG interrupt configuration register"]
pub mod pro_pms_dma_rx_i_ilg_intr_map;
#[doc = "PRO_PMS_DMA_TX_I_ILG_INTR_MAP (rw) register accessor: PMS_DMA_TX_I_ILG interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_pms_dma_tx_i_ilg_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_pms_dma_tx_i_ilg_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_pms_dma_tx_i_ilg_intr_map`] module"]
pub type PRO_PMS_DMA_TX_I_ILG_INTR_MAP =
    crate::Reg<pro_pms_dma_tx_i_ilg_intr_map::PRO_PMS_DMA_TX_I_ILG_INTR_MAP_SPEC>;
#[doc = "PMS_DMA_TX_I_ILG interrupt configuration register"]
pub mod pro_pms_dma_tx_i_ilg_intr_map;
#[doc = "PRO_SPI_MEM_REJECT_INTR_MAP (rw) register accessor: SPI_MEM_REJECT_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_spi_mem_reject_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_spi_mem_reject_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_spi_mem_reject_intr_map`] module"]
pub type PRO_SPI_MEM_REJECT_INTR_MAP =
    crate::Reg<pro_spi_mem_reject_intr_map::PRO_SPI_MEM_REJECT_INTR_MAP_SPEC>;
#[doc = "SPI_MEM_REJECT_INTR interrupt configuration register"]
pub mod pro_spi_mem_reject_intr_map;
#[doc = "PRO_DMA_COPY_INTR_MAP (rw) register accessor: DMA_COPY_INTR interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_dma_copy_intr_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_dma_copy_intr_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_dma_copy_intr_map`] module"]
pub type PRO_DMA_COPY_INTR_MAP = crate::Reg<pro_dma_copy_intr_map::PRO_DMA_COPY_INTR_MAP_SPEC>;
#[doc = "DMA_COPY_INTR interrupt configuration register"]
pub mod pro_dma_copy_intr_map;
#[doc = "PRO_SPI4_DMA_INT_MAP (rw) register accessor: SPI4_DMA_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_spi4_dma_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_spi4_dma_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_spi4_dma_int_map`] module"]
pub type PRO_SPI4_DMA_INT_MAP = crate::Reg<pro_spi4_dma_int_map::PRO_SPI4_DMA_INT_MAP_SPEC>;
#[doc = "SPI4_DMA_INT interrupt configuration register"]
pub mod pro_spi4_dma_int_map;
#[doc = "PRO_SPI_INTR_4_MAP (rw) register accessor: SPI_INTR_4 interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_spi_intr_4_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_spi_intr_4_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_spi_intr_4_map`] module"]
pub type PRO_SPI_INTR_4_MAP = crate::Reg<pro_spi_intr_4_map::PRO_SPI_INTR_4_MAP_SPEC>;
#[doc = "SPI_INTR_4 interrupt configuration register"]
pub mod pro_spi_intr_4_map;
#[doc = "PRO_DCACHE_PRELOAD_INT_MAP (rw) register accessor: DCACHE_PRELOAD_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_dcache_preload_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_dcache_preload_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_dcache_preload_int_map`] module"]
pub type PRO_DCACHE_PRELOAD_INT_MAP =
    crate::Reg<pro_dcache_preload_int_map::PRO_DCACHE_PRELOAD_INT_MAP_SPEC>;
#[doc = "DCACHE_PRELOAD_INT interrupt configuration register"]
pub mod pro_dcache_preload_int_map;
#[doc = "PRO_ICACHE_PRELOAD_INT_MAP (rw) register accessor: ICACHE_PRELOAD_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_icache_preload_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_icache_preload_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_icache_preload_int_map`] module"]
pub type PRO_ICACHE_PRELOAD_INT_MAP =
    crate::Reg<pro_icache_preload_int_map::PRO_ICACHE_PRELOAD_INT_MAP_SPEC>;
#[doc = "ICACHE_PRELOAD_INT interrupt configuration register"]
pub mod pro_icache_preload_int_map;
#[doc = "PRO_APB_ADC_INT_MAP (rw) register accessor: APB_ADC_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_apb_adc_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_apb_adc_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_apb_adc_int_map`] module"]
pub type PRO_APB_ADC_INT_MAP = crate::Reg<pro_apb_adc_int_map::PRO_APB_ADC_INT_MAP_SPEC>;
#[doc = "APB_ADC_INT interrupt configuration register"]
pub mod pro_apb_adc_int_map;
#[doc = "PRO_CRYPTO_DMA_INT_MAP (rw) register accessor: CRYPTO_DMA_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_crypto_dma_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_crypto_dma_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_crypto_dma_int_map`] module"]
pub type PRO_CRYPTO_DMA_INT_MAP = crate::Reg<pro_crypto_dma_int_map::PRO_CRYPTO_DMA_INT_MAP_SPEC>;
#[doc = "CRYPTO_DMA_INT interrupt configuration register"]
pub mod pro_crypto_dma_int_map;
#[doc = "PRO_CPU_PERI_ERROR_INT_MAP (rw) register accessor: CPU_PERI_ERROR_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_cpu_peri_error_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_cpu_peri_error_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_cpu_peri_error_int_map`] module"]
pub type PRO_CPU_PERI_ERROR_INT_MAP =
    crate::Reg<pro_cpu_peri_error_int_map::PRO_CPU_PERI_ERROR_INT_MAP_SPEC>;
#[doc = "CPU_PERI_ERROR_INT interrupt configuration register"]
pub mod pro_cpu_peri_error_int_map;
#[doc = "PRO_APB_PERI_ERROR_INT_MAP (rw) register accessor: APB_PERI_ERROR_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_apb_peri_error_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_apb_peri_error_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_apb_peri_error_int_map`] module"]
pub type PRO_APB_PERI_ERROR_INT_MAP =
    crate::Reg<pro_apb_peri_error_int_map::PRO_APB_PERI_ERROR_INT_MAP_SPEC>;
#[doc = "APB_PERI_ERROR_INT interrupt configuration register"]
pub mod pro_apb_peri_error_int_map;
#[doc = "PRO_DCACHE_SYNC_INT_MAP (rw) register accessor: DCACHE_SYNC_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_dcache_sync_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_dcache_sync_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_dcache_sync_int_map`] module"]
pub type PRO_DCACHE_SYNC_INT_MAP =
    crate::Reg<pro_dcache_sync_int_map::PRO_DCACHE_SYNC_INT_MAP_SPEC>;
#[doc = "DCACHE_SYNC_INT interrupt configuration register"]
pub mod pro_dcache_sync_int_map;
#[doc = "PRO_ICACHE_SYNC_INT_MAP (rw) register accessor: ICACHE_SYNC_INT interrupt configuration register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_icache_sync_int_map::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pro_icache_sync_int_map::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_icache_sync_int_map`] module"]
pub type PRO_ICACHE_SYNC_INT_MAP =
    crate::Reg<pro_icache_sync_int_map::PRO_ICACHE_SYNC_INT_MAP_SPEC>;
#[doc = "ICACHE_SYNC_INT interrupt configuration register"]
pub mod pro_icache_sync_int_map;
#[doc = "PRO_INTR_STATUS_0 (r) register accessor: Interrupt status register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_intr_status_0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_intr_status_0`] module"]
pub type PRO_INTR_STATUS_0 = crate::Reg<pro_intr_status_0::PRO_INTR_STATUS_0_SPEC>;
#[doc = "Interrupt status register 0"]
pub mod pro_intr_status_0;
#[doc = "PRO_INTR_STATUS_1 (r) register accessor: Interrupt status register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_intr_status_1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_intr_status_1`] module"]
pub type PRO_INTR_STATUS_1 = crate::Reg<pro_intr_status_1::PRO_INTR_STATUS_1_SPEC>;
#[doc = "Interrupt status register 1"]
pub mod pro_intr_status_1;
#[doc = "PRO_INTR_STATUS_2 (r) register accessor: Interrupt status register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pro_intr_status_2::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pro_intr_status_2`] module"]
pub type PRO_INTR_STATUS_2 = crate::Reg<pro_intr_status_2::PRO_INTR_STATUS_2_SPEC>;
#[doc = "Interrupt status register 2"]
pub mod pro_intr_status_2;
#[doc = "CLOCK_GATE (rw) register accessor: NMI interrupt signals mask register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`clock_gate::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`clock_gate::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@clock_gate`] module"]
pub type CLOCK_GATE = crate::Reg<clock_gate::CLOCK_GATE_SPEC>;
#[doc = "NMI interrupt signals mask register"]
pub mod clock_gate;
#[doc = "REG_DATE (rw) register accessor: Version control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`reg_date::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`reg_date::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@reg_date`] module"]
pub type REG_DATE = crate::Reg<reg_date::REG_DATE_SPEC>;
#[doc = "Version control register"]
pub mod reg_date;