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
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - "]
    pub clk_ctrl_sel: CLK_CTRL_SEL,
    #[doc = "0x04 - "]
    pub clk_pll_prediv_ctrl: CLK_PLL_PREDIV_CTRL,
    _reserved2: [u8; 4usize],
    #[doc = "0x0c - "]
    pub clk_postdiv_ctrl_flash: CLK_POSTDIV_CTRL_FLASH,
    #[doc = "0x10 - "]
    pub clk_postdiv_ctrl_qspi: CLK_POSTDIV_CTRL_QSPI,
    #[doc = "0x14 - "]
    pub clk_postdiv_ctrl_rtc: CLK_POSTDIV_CTRL_RTC,
    #[doc = "0x18 - "]
    pub clk_postdiv_ctrl_sd: CLK_POSTDIV_CTRL_SD,
    #[doc = "0x1c - "]
    pub clk_postdiv_ctrl_test: CLK_POSTDIV_CTRL_TEST,
    #[doc = "0x20 - "]
    pub ctrl_bypass_div: CTRL_BYPASS_DIV,
    #[doc = "0x24 - "]
    pub pll_ctrl_pll0_clk: PLL_CTRL_PLL0_CLK,
    #[doc = "0x28 - "]
    pub pll_postdiv_ctrl_pll0_clk: PLL_POSTDIV_CTRL_PLL0_CLK,
    #[doc = "0x2c - "]
    pub pll_ctrl_mult_pll0_clk: PLL_CTRL_MULT_PLL0_CLK,
    #[doc = "0x30 - "]
    pub clk_ctrl_enable: CLK_CTRL_ENABLE,
    #[doc = "0x34 - "]
    pub clk_status: CLK_STATUS,
    _reserved13: [u8; 8usize],
    #[doc = "0x40 - "]
    pub reset_ctrl: RESET_CTRL,
    _reserved14: [u8; 4usize],
    #[doc = "0x48 - "]
    pub dbg_ctrl: DBG_CTRL,
    #[doc = "0x4c - "]
    pub sram_ctrl: SRAM_CTRL,
    #[doc = "0x50 - "]
    pub intr_ctrl: INTR_CTRL,
    #[doc = "0x54 - "]
    pub clk_test_ctrl: CLK_TEST_CTRL,
    #[doc = "0x58 - "]
    pub cpu0_vtor: CPU0_VTOR,
    _reserved19: [u8; 4usize],
    #[doc = "0x60 - "]
    pub cpu1_vtor: CPU1_VTOR,
    #[doc = "0x64 - "]
    pub az_cpu_vtor: AZ_CPU_VTOR,
    #[doc = "0x68 - "]
    pub iomux_main_insel_0: IOMUX_MAIN_INSEL_0,
    #[doc = "0x6c - "]
    pub iomux_main_insel_1: IOMUX_MAIN_INSEL_1,
    #[doc = "0x70 - "]
    pub iomux_main_outsel_0: IOMUX_MAIN_OUTSEL_0,
    #[doc = "0x74 - "]
    pub iomux_main_outsel_1: IOMUX_MAIN_OUTSEL_1,
    #[doc = "0x78 - "]
    pub iomux_main_oensel_0: IOMUX_MAIN_OENSEL_0,
    #[doc = "0x7c - "]
    pub iomux_main_oensel_1: IOMUX_MAIN_OENSEL_1,
    #[doc = "0x80 - "]
    pub iomux_main_default_in_0: IOMUX_MAIN_DEFAULT_IN_0,
    #[doc = "0x84 - "]
    pub iomux_main_default_in_1: IOMUX_MAIN_DEFAULT_IN_1,
    #[doc = "0x88 - "]
    pub iomux_altf1_insel_0: IOMUX_ALTF1_INSEL_0,
    #[doc = "0x8c - "]
    pub iomux_altf1_insel_1: IOMUX_ALTF1_INSEL_1,
    #[doc = "0x90 - "]
    pub iomux_altf1_outsel_0: IOMUX_ALTF1_OUTSEL_0,
    #[doc = "0x94 - "]
    pub iomux_altf1_outsel_1: IOMUX_ALTF1_OUTSEL_1,
    #[doc = "0x98 - "]
    pub iomux_altf1_oensel_0: IOMUX_ALTF1_OENSEL_0,
    #[doc = "0x9c - "]
    pub iomux_altf1_oensel_1: IOMUX_ALTF1_OENSEL_1,
    #[doc = "0xa0 - "]
    pub iomux_altf1_default_in_0: IOMUX_ALTF1_DEFAULT_IN_0,
    #[doc = "0xa4 - "]
    pub iomux_altf1_default_in_1: IOMUX_ALTF1_DEFAULT_IN_1,
    #[doc = "0xa8 - "]
    pub iomux_altf2_insel_0: IOMUX_ALTF2_INSEL_0,
    #[doc = "0xac - "]
    pub iomux_altf2_insel_1: IOMUX_ALTF2_INSEL_1,
    #[doc = "0xb0 - "]
    pub iomux_altf2_outsel_0: IOMUX_ALTF2_OUTSEL_0,
    #[doc = "0xb4 - "]
    pub iomux_altf2_outsel_1: IOMUX_ALTF2_OUTSEL_1,
    #[doc = "0xb8 - "]
    pub iomux_altf2_oensel_0: IOMUX_ALTF2_OENSEL_0,
    #[doc = "0xbc - "]
    pub iomux_altf2_oensel_1: IOMUX_ALTF2_OENSEL_1,
    #[doc = "0xc0 - "]
    pub iomux_altf2_default_in_0: IOMUX_ALTF2_DEFAULT_IN_0,
    #[doc = "0xc4 - "]
    pub iomux_altf2_default_in_1: IOMUX_ALTF2_DEFAULT_IN_1,
    _reserved45: [u8; 32usize],
    #[doc = "0xe8 - "]
    pub iopad_dso_0: IOPAD_DSO_0,
    #[doc = "0xec - "]
    pub iopad_dso_1: IOPAD_DSO_1,
    #[doc = "0xf0 - "]
    pub iopad_ds1_0: IOPAD_DS1_0,
    #[doc = "0xf4 - "]
    pub iopad_ds1_1: IOPAD_DS1_1,
    #[doc = "0xf8 - "]
    pub iopad_pe_0: IOPAD_PE_0,
    #[doc = "0xfc - "]
    pub iopad_pe_1: IOPAD_PE_1,
    #[doc = "0x100 - "]
    pub iopad_ps_0: IOPAD_PS_0,
    #[doc = "0x104 - "]
    pub iopad_ps_1: IOPAD_PS_1,
    #[doc = "0x108 - "]
    pub iopad_sr_0: IOPAD_SR_0,
    #[doc = "0x10c - "]
    pub iopad_sr_1: IOPAD_SR_1,
    #[doc = "0x110 - "]
    pub iopad_is_0: IOPAD_IS_0,
    #[doc = "0x114 - "]
    pub iopad_is_1: IOPAD_IS_1,
    #[doc = "0x118 - "]
    pub pvt_ctrl: PVT_CTRL,
    _reserved58: [u8; 20usize],
    #[doc = "0x130 - "]
    pub spare0: SPARE0,
    _reserved59: [u8; 8usize],
    #[doc = "0x13c - "]
    pub static_conf_sig1: STATIC_CONF_SIG1,
    _reserved60: [u8; 96usize],
    #[doc = "0x1a0 - "]
    pub flash_din_0: FLASH_DIN_0,
    #[doc = "0x1a4 - "]
    pub flash_din_1: FLASH_DIN_1,
    #[doc = "0x1a8 - "]
    pub flash_din_2: FLASH_DIN_2,
    #[doc = "0x1ac - "]
    pub flash_din_3: FLASH_DIN_3,
    _reserved64: [u8; 16usize],
    #[doc = "0x1c0 - "]
    pub flash0_dout_0: FLASH0_DOUT_0,
    #[doc = "0x1c4 - "]
    pub flash0_dout_1: FLASH0_DOUT_1,
    #[doc = "0x1c8 - "]
    pub flash0_dout_2: FLASH0_DOUT_2,
    #[doc = "0x1cc - "]
    pub flash0_dout_3: FLASH0_DOUT_3,
    #[doc = "0x1d0 - "]
    pub flash1_dout_0: FLASH1_DOUT_0,
    #[doc = "0x1d4 - "]
    pub flash1_dout_1: FLASH1_DOUT_1,
    #[doc = "0x1d8 - "]
    pub flash1_dout_2: FLASH1_DOUT_2,
    #[doc = "0x1dc - "]
    pub flash1_dout_3: FLASH1_DOUT_3,
    #[doc = "0x1e0 - "]
    pub selection_control_reg: SELECTION_CONTROL_REG,
    #[doc = "0x1e4 - "]
    pub az_rom_remap_mask: AZ_ROM_REMAP_MASK,
    #[doc = "0x1e8 - "]
    pub az_rom_remap_offset: AZ_ROM_REMAP_OFFSET,
    #[doc = "0x1ec - "]
    pub az_code_remap_mask: AZ_CODE_REMAP_MASK,
    #[doc = "0x1f0 - "]
    pub az_code_remap_offset: AZ_CODE_REMAP_OFFSET,
    #[doc = "0x1f4 - "]
    pub az_sys_remap_mask: AZ_SYS_REMAP_MASK,
    #[doc = "0x1f8 - "]
    pub az_sys_remap_offset: AZ_SYS_REMAP_OFFSET,
    _reserved79: [u8; 4usize],
    #[doc = "0x200 - "]
    pub az_ctrl: AZ_CTRL,
    _reserved80: [u8; 4usize],
    #[doc = "0x208 - "]
    pub sse_otp_rd_data: SSE_OTP_RD_DATA,
    _reserved81: [u8; 4usize],
    #[doc = "0x210 - "]
    pub az_otp_rd_data: AZ_OTP_RD_DATA,
    _reserved82: [u8; 8usize],
    #[doc = "0x21c - "]
    pub spare_ctrl0: SPARE_CTRL0,
    #[doc = "0x220 - "]
    pub spare_ctrl1: SPARE_CTRL1,
    _reserved84: [u8; 476usize],
    #[doc = "0x400 - "]
    pub chip_id: CHIP_ID,
}
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_ctrl_sel](clk_ctrl_sel) module"]
pub type CLK_CTRL_SEL = crate::Reg<u32, _CLK_CTRL_SEL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_CTRL_SEL;
#[doc = "`read()` method returns [clk_ctrl_sel::R](clk_ctrl_sel::R) reader structure"]
impl crate::Readable for CLK_CTRL_SEL {}
#[doc = "`write(|w| ..)` method takes [clk_ctrl_sel::W](clk_ctrl_sel::W) writer structure"]
impl crate::Writable for CLK_CTRL_SEL {}
#[doc = ""]
pub mod clk_ctrl_sel;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_pll_prediv_ctrl](clk_pll_prediv_ctrl) module"]
pub type CLK_PLL_PREDIV_CTRL = crate::Reg<u32, _CLK_PLL_PREDIV_CTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_PLL_PREDIV_CTRL;
#[doc = "`read()` method returns [clk_pll_prediv_ctrl::R](clk_pll_prediv_ctrl::R) reader structure"]
impl crate::Readable for CLK_PLL_PREDIV_CTRL {}
#[doc = "`write(|w| ..)` method takes [clk_pll_prediv_ctrl::W](clk_pll_prediv_ctrl::W) writer structure"]
impl crate::Writable for CLK_PLL_PREDIV_CTRL {}
#[doc = ""]
pub mod clk_pll_prediv_ctrl;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_postdiv_ctrl_flash](clk_postdiv_ctrl_flash) module"]
pub type CLK_POSTDIV_CTRL_FLASH = crate::Reg<u32, _CLK_POSTDIV_CTRL_FLASH>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_POSTDIV_CTRL_FLASH;
#[doc = "`read()` method returns [clk_postdiv_ctrl_flash::R](clk_postdiv_ctrl_flash::R) reader structure"]
impl crate::Readable for CLK_POSTDIV_CTRL_FLASH {}
#[doc = "`write(|w| ..)` method takes [clk_postdiv_ctrl_flash::W](clk_postdiv_ctrl_flash::W) writer structure"]
impl crate::Writable for CLK_POSTDIV_CTRL_FLASH {}
#[doc = ""]
pub mod clk_postdiv_ctrl_flash;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_postdiv_ctrl_qspi](clk_postdiv_ctrl_qspi) module"]
pub type CLK_POSTDIV_CTRL_QSPI = crate::Reg<u32, _CLK_POSTDIV_CTRL_QSPI>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_POSTDIV_CTRL_QSPI;
#[doc = "`read()` method returns [clk_postdiv_ctrl_qspi::R](clk_postdiv_ctrl_qspi::R) reader structure"]
impl crate::Readable for CLK_POSTDIV_CTRL_QSPI {}
#[doc = "`write(|w| ..)` method takes [clk_postdiv_ctrl_qspi::W](clk_postdiv_ctrl_qspi::W) writer structure"]
impl crate::Writable for CLK_POSTDIV_CTRL_QSPI {}
#[doc = ""]
pub mod clk_postdiv_ctrl_qspi;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_postdiv_ctrl_rtc](clk_postdiv_ctrl_rtc) module"]
pub type CLK_POSTDIV_CTRL_RTC = crate::Reg<u32, _CLK_POSTDIV_CTRL_RTC>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_POSTDIV_CTRL_RTC;
#[doc = "`read()` method returns [clk_postdiv_ctrl_rtc::R](clk_postdiv_ctrl_rtc::R) reader structure"]
impl crate::Readable for CLK_POSTDIV_CTRL_RTC {}
#[doc = "`write(|w| ..)` method takes [clk_postdiv_ctrl_rtc::W](clk_postdiv_ctrl_rtc::W) writer structure"]
impl crate::Writable for CLK_POSTDIV_CTRL_RTC {}
#[doc = ""]
pub mod clk_postdiv_ctrl_rtc;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_postdiv_ctrl_sd](clk_postdiv_ctrl_sd) module"]
pub type CLK_POSTDIV_CTRL_SD = crate::Reg<u32, _CLK_POSTDIV_CTRL_SD>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_POSTDIV_CTRL_SD;
#[doc = "`read()` method returns [clk_postdiv_ctrl_sd::R](clk_postdiv_ctrl_sd::R) reader structure"]
impl crate::Readable for CLK_POSTDIV_CTRL_SD {}
#[doc = "`write(|w| ..)` method takes [clk_postdiv_ctrl_sd::W](clk_postdiv_ctrl_sd::W) writer structure"]
impl crate::Writable for CLK_POSTDIV_CTRL_SD {}
#[doc = ""]
pub mod clk_postdiv_ctrl_sd;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_postdiv_ctrl_test](clk_postdiv_ctrl_test) module"]
pub type CLK_POSTDIV_CTRL_TEST = crate::Reg<u32, _CLK_POSTDIV_CTRL_TEST>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_POSTDIV_CTRL_TEST;
#[doc = "`read()` method returns [clk_postdiv_ctrl_test::R](clk_postdiv_ctrl_test::R) reader structure"]
impl crate::Readable for CLK_POSTDIV_CTRL_TEST {}
#[doc = "`write(|w| ..)` method takes [clk_postdiv_ctrl_test::W](clk_postdiv_ctrl_test::W) writer structure"]
impl crate::Writable for CLK_POSTDIV_CTRL_TEST {}
#[doc = ""]
pub mod clk_postdiv_ctrl_test;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [ctrl_bypass_div](ctrl_bypass_div) module"]
pub type CTRL_BYPASS_DIV = crate::Reg<u32, _CTRL_BYPASS_DIV>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CTRL_BYPASS_DIV;
#[doc = "`read()` method returns [ctrl_bypass_div::R](ctrl_bypass_div::R) reader structure"]
impl crate::Readable for CTRL_BYPASS_DIV {}
#[doc = "`write(|w| ..)` method takes [ctrl_bypass_div::W](ctrl_bypass_div::W) writer structure"]
impl crate::Writable for CTRL_BYPASS_DIV {}
#[doc = ""]
pub mod ctrl_bypass_div;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [pll_ctrl_pll0_clk](pll_ctrl_pll0_clk) module"]
pub type PLL_CTRL_PLL0_CLK = crate::Reg<u32, _PLL_CTRL_PLL0_CLK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _PLL_CTRL_PLL0_CLK;
#[doc = "`read()` method returns [pll_ctrl_pll0_clk::R](pll_ctrl_pll0_clk::R) reader structure"]
impl crate::Readable for PLL_CTRL_PLL0_CLK {}
#[doc = "`write(|w| ..)` method takes [pll_ctrl_pll0_clk::W](pll_ctrl_pll0_clk::W) writer structure"]
impl crate::Writable for PLL_CTRL_PLL0_CLK {}
#[doc = ""]
pub mod pll_ctrl_pll0_clk;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [pll_postdiv_ctrl_pll0_clk](pll_postdiv_ctrl_pll0_clk) module"]
pub type PLL_POSTDIV_CTRL_PLL0_CLK = crate::Reg<u32, _PLL_POSTDIV_CTRL_PLL0_CLK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _PLL_POSTDIV_CTRL_PLL0_CLK;
#[doc = "`read()` method returns [pll_postdiv_ctrl_pll0_clk::R](pll_postdiv_ctrl_pll0_clk::R) reader structure"]
impl crate::Readable for PLL_POSTDIV_CTRL_PLL0_CLK {}
#[doc = "`write(|w| ..)` method takes [pll_postdiv_ctrl_pll0_clk::W](pll_postdiv_ctrl_pll0_clk::W) writer structure"]
impl crate::Writable for PLL_POSTDIV_CTRL_PLL0_CLK {}
#[doc = ""]
pub mod pll_postdiv_ctrl_pll0_clk;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [pll_ctrl_mult_pll0_clk](pll_ctrl_mult_pll0_clk) module"]
pub type PLL_CTRL_MULT_PLL0_CLK = crate::Reg<u32, _PLL_CTRL_MULT_PLL0_CLK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _PLL_CTRL_MULT_PLL0_CLK;
#[doc = "`read()` method returns [pll_ctrl_mult_pll0_clk::R](pll_ctrl_mult_pll0_clk::R) reader structure"]
impl crate::Readable for PLL_CTRL_MULT_PLL0_CLK {}
#[doc = "`write(|w| ..)` method takes [pll_ctrl_mult_pll0_clk::W](pll_ctrl_mult_pll0_clk::W) writer structure"]
impl crate::Writable for PLL_CTRL_MULT_PLL0_CLK {}
#[doc = ""]
pub mod pll_ctrl_mult_pll0_clk;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_ctrl_enable](clk_ctrl_enable) module"]
pub type CLK_CTRL_ENABLE = crate::Reg<u32, _CLK_CTRL_ENABLE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_CTRL_ENABLE;
#[doc = "`read()` method returns [clk_ctrl_enable::R](clk_ctrl_enable::R) reader structure"]
impl crate::Readable for CLK_CTRL_ENABLE {}
#[doc = "`write(|w| ..)` method takes [clk_ctrl_enable::W](clk_ctrl_enable::W) writer structure"]
impl crate::Writable for CLK_CTRL_ENABLE {}
#[doc = ""]
pub mod clk_ctrl_enable;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_status](clk_status) module"]
pub type CLK_STATUS = crate::Reg<u32, _CLK_STATUS>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_STATUS;
#[doc = "`read()` method returns [clk_status::R](clk_status::R) reader structure"]
impl crate::Readable for CLK_STATUS {}
#[doc = ""]
pub mod clk_status;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [reset_ctrl](reset_ctrl) module"]
pub type RESET_CTRL = crate::Reg<u32, _RESET_CTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _RESET_CTRL;
#[doc = "`read()` method returns [reset_ctrl::R](reset_ctrl::R) reader structure"]
impl crate::Readable for RESET_CTRL {}
#[doc = "`write(|w| ..)` method takes [reset_ctrl::W](reset_ctrl::W) writer structure"]
impl crate::Writable for RESET_CTRL {}
#[doc = ""]
pub mod reset_ctrl;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [dbg_ctrl](dbg_ctrl) module"]
pub type DBG_CTRL = crate::Reg<u32, _DBG_CTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DBG_CTRL;
#[doc = "`read()` method returns [dbg_ctrl::R](dbg_ctrl::R) reader structure"]
impl crate::Readable for DBG_CTRL {}
#[doc = "`write(|w| ..)` method takes [dbg_ctrl::W](dbg_ctrl::W) writer structure"]
impl crate::Writable for DBG_CTRL {}
#[doc = ""]
pub mod dbg_ctrl;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sram_ctrl](sram_ctrl) module"]
pub type SRAM_CTRL = crate::Reg<u32, _SRAM_CTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SRAM_CTRL;
#[doc = "`read()` method returns [sram_ctrl::R](sram_ctrl::R) reader structure"]
impl crate::Readable for SRAM_CTRL {}
#[doc = "`write(|w| ..)` method takes [sram_ctrl::W](sram_ctrl::W) writer structure"]
impl crate::Writable for SRAM_CTRL {}
#[doc = ""]
pub mod sram_ctrl;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [intr_ctrl](intr_ctrl) module"]
pub type INTR_CTRL = crate::Reg<u32, _INTR_CTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _INTR_CTRL;
#[doc = "`read()` method returns [intr_ctrl::R](intr_ctrl::R) reader structure"]
impl crate::Readable for INTR_CTRL {}
#[doc = "`write(|w| ..)` method takes [intr_ctrl::W](intr_ctrl::W) writer structure"]
impl crate::Writable for INTR_CTRL {}
#[doc = ""]
pub mod intr_ctrl;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [clk_test_ctrl](clk_test_ctrl) module"]
pub type CLK_TEST_CTRL = crate::Reg<u32, _CLK_TEST_CTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CLK_TEST_CTRL;
#[doc = "`read()` method returns [clk_test_ctrl::R](clk_test_ctrl::R) reader structure"]
impl crate::Readable for CLK_TEST_CTRL {}
#[doc = "`write(|w| ..)` method takes [clk_test_ctrl::W](clk_test_ctrl::W) writer structure"]
impl crate::Writable for CLK_TEST_CTRL {}
#[doc = ""]
pub mod clk_test_ctrl;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [cpu0_vtor](cpu0_vtor) module"]
pub type CPU0_VTOR = crate::Reg<u32, _CPU0_VTOR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CPU0_VTOR;
#[doc = "`read()` method returns [cpu0_vtor::R](cpu0_vtor::R) reader structure"]
impl crate::Readable for CPU0_VTOR {}
#[doc = "`write(|w| ..)` method takes [cpu0_vtor::W](cpu0_vtor::W) writer structure"]
impl crate::Writable for CPU0_VTOR {}
#[doc = ""]
pub mod cpu0_vtor;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [cpu1_vtor](cpu1_vtor) module"]
pub type CPU1_VTOR = crate::Reg<u32, _CPU1_VTOR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CPU1_VTOR;
#[doc = "`read()` method returns [cpu1_vtor::R](cpu1_vtor::R) reader structure"]
impl crate::Readable for CPU1_VTOR {}
#[doc = "`write(|w| ..)` method takes [cpu1_vtor::W](cpu1_vtor::W) writer structure"]
impl crate::Writable for CPU1_VTOR {}
#[doc = ""]
pub mod cpu1_vtor;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [az_cpu_vtor](az_cpu_vtor) module"]
pub type AZ_CPU_VTOR = crate::Reg<u32, _AZ_CPU_VTOR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _AZ_CPU_VTOR;
#[doc = "`read()` method returns [az_cpu_vtor::R](az_cpu_vtor::R) reader structure"]
impl crate::Readable for AZ_CPU_VTOR {}
#[doc = "`write(|w| ..)` method takes [az_cpu_vtor::W](az_cpu_vtor::W) writer structure"]
impl crate::Writable for AZ_CPU_VTOR {}
#[doc = ""]
pub mod az_cpu_vtor;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_main_insel_0](iomux_main_insel_0) module"]
pub type IOMUX_MAIN_INSEL_0 = crate::Reg<u32, _IOMUX_MAIN_INSEL_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_MAIN_INSEL_0;
#[doc = "`read()` method returns [iomux_main_insel_0::R](iomux_main_insel_0::R) reader structure"]
impl crate::Readable for IOMUX_MAIN_INSEL_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_main_insel_0::W](iomux_main_insel_0::W) writer structure"]
impl crate::Writable for IOMUX_MAIN_INSEL_0 {}
#[doc = ""]
pub mod iomux_main_insel_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_main_insel_1](iomux_main_insel_1) module"]
pub type IOMUX_MAIN_INSEL_1 = crate::Reg<u32, _IOMUX_MAIN_INSEL_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_MAIN_INSEL_1;
#[doc = "`read()` method returns [iomux_main_insel_1::R](iomux_main_insel_1::R) reader structure"]
impl crate::Readable for IOMUX_MAIN_INSEL_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_main_insel_1::W](iomux_main_insel_1::W) writer structure"]
impl crate::Writable for IOMUX_MAIN_INSEL_1 {}
#[doc = ""]
pub mod iomux_main_insel_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_main_outsel_0](iomux_main_outsel_0) module"]
pub type IOMUX_MAIN_OUTSEL_0 = crate::Reg<u32, _IOMUX_MAIN_OUTSEL_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_MAIN_OUTSEL_0;
#[doc = "`read()` method returns [iomux_main_outsel_0::R](iomux_main_outsel_0::R) reader structure"]
impl crate::Readable for IOMUX_MAIN_OUTSEL_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_main_outsel_0::W](iomux_main_outsel_0::W) writer structure"]
impl crate::Writable for IOMUX_MAIN_OUTSEL_0 {}
#[doc = ""]
pub mod iomux_main_outsel_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_main_outsel_1](iomux_main_outsel_1) module"]
pub type IOMUX_MAIN_OUTSEL_1 = crate::Reg<u32, _IOMUX_MAIN_OUTSEL_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_MAIN_OUTSEL_1;
#[doc = "`read()` method returns [iomux_main_outsel_1::R](iomux_main_outsel_1::R) reader structure"]
impl crate::Readable for IOMUX_MAIN_OUTSEL_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_main_outsel_1::W](iomux_main_outsel_1::W) writer structure"]
impl crate::Writable for IOMUX_MAIN_OUTSEL_1 {}
#[doc = ""]
pub mod iomux_main_outsel_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_main_oensel_0](iomux_main_oensel_0) module"]
pub type IOMUX_MAIN_OENSEL_0 = crate::Reg<u32, _IOMUX_MAIN_OENSEL_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_MAIN_OENSEL_0;
#[doc = "`read()` method returns [iomux_main_oensel_0::R](iomux_main_oensel_0::R) reader structure"]
impl crate::Readable for IOMUX_MAIN_OENSEL_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_main_oensel_0::W](iomux_main_oensel_0::W) writer structure"]
impl crate::Writable for IOMUX_MAIN_OENSEL_0 {}
#[doc = ""]
pub mod iomux_main_oensel_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_main_oensel_1](iomux_main_oensel_1) module"]
pub type IOMUX_MAIN_OENSEL_1 = crate::Reg<u32, _IOMUX_MAIN_OENSEL_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_MAIN_OENSEL_1;
#[doc = "`read()` method returns [iomux_main_oensel_1::R](iomux_main_oensel_1::R) reader structure"]
impl crate::Readable for IOMUX_MAIN_OENSEL_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_main_oensel_1::W](iomux_main_oensel_1::W) writer structure"]
impl crate::Writable for IOMUX_MAIN_OENSEL_1 {}
#[doc = ""]
pub mod iomux_main_oensel_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_main_default_in_0](iomux_main_default_in_0) module"]
pub type IOMUX_MAIN_DEFAULT_IN_0 = crate::Reg<u32, _IOMUX_MAIN_DEFAULT_IN_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_MAIN_DEFAULT_IN_0;
#[doc = "`read()` method returns [iomux_main_default_in_0::R](iomux_main_default_in_0::R) reader structure"]
impl crate::Readable for IOMUX_MAIN_DEFAULT_IN_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_main_default_in_0::W](iomux_main_default_in_0::W) writer structure"]
impl crate::Writable for IOMUX_MAIN_DEFAULT_IN_0 {}
#[doc = ""]
pub mod iomux_main_default_in_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_main_default_in_1](iomux_main_default_in_1) module"]
pub type IOMUX_MAIN_DEFAULT_IN_1 = crate::Reg<u32, _IOMUX_MAIN_DEFAULT_IN_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_MAIN_DEFAULT_IN_1;
#[doc = "`read()` method returns [iomux_main_default_in_1::R](iomux_main_default_in_1::R) reader structure"]
impl crate::Readable for IOMUX_MAIN_DEFAULT_IN_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_main_default_in_1::W](iomux_main_default_in_1::W) writer structure"]
impl crate::Writable for IOMUX_MAIN_DEFAULT_IN_1 {}
#[doc = ""]
pub mod iomux_main_default_in_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf1_insel_0](iomux_altf1_insel_0) module"]
pub type IOMUX_ALTF1_INSEL_0 = crate::Reg<u32, _IOMUX_ALTF1_INSEL_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF1_INSEL_0;
#[doc = "`read()` method returns [iomux_altf1_insel_0::R](iomux_altf1_insel_0::R) reader structure"]
impl crate::Readable for IOMUX_ALTF1_INSEL_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf1_insel_0::W](iomux_altf1_insel_0::W) writer structure"]
impl crate::Writable for IOMUX_ALTF1_INSEL_0 {}
#[doc = ""]
pub mod iomux_altf1_insel_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf1_insel_1](iomux_altf1_insel_1) module"]
pub type IOMUX_ALTF1_INSEL_1 = crate::Reg<u32, _IOMUX_ALTF1_INSEL_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF1_INSEL_1;
#[doc = "`read()` method returns [iomux_altf1_insel_1::R](iomux_altf1_insel_1::R) reader structure"]
impl crate::Readable for IOMUX_ALTF1_INSEL_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf1_insel_1::W](iomux_altf1_insel_1::W) writer structure"]
impl crate::Writable for IOMUX_ALTF1_INSEL_1 {}
#[doc = ""]
pub mod iomux_altf1_insel_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf1_outsel_0](iomux_altf1_outsel_0) module"]
pub type IOMUX_ALTF1_OUTSEL_0 = crate::Reg<u32, _IOMUX_ALTF1_OUTSEL_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF1_OUTSEL_0;
#[doc = "`read()` method returns [iomux_altf1_outsel_0::R](iomux_altf1_outsel_0::R) reader structure"]
impl crate::Readable for IOMUX_ALTF1_OUTSEL_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf1_outsel_0::W](iomux_altf1_outsel_0::W) writer structure"]
impl crate::Writable for IOMUX_ALTF1_OUTSEL_0 {}
#[doc = ""]
pub mod iomux_altf1_outsel_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf1_outsel_1](iomux_altf1_outsel_1) module"]
pub type IOMUX_ALTF1_OUTSEL_1 = crate::Reg<u32, _IOMUX_ALTF1_OUTSEL_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF1_OUTSEL_1;
#[doc = "`read()` method returns [iomux_altf1_outsel_1::R](iomux_altf1_outsel_1::R) reader structure"]
impl crate::Readable for IOMUX_ALTF1_OUTSEL_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf1_outsel_1::W](iomux_altf1_outsel_1::W) writer structure"]
impl crate::Writable for IOMUX_ALTF1_OUTSEL_1 {}
#[doc = ""]
pub mod iomux_altf1_outsel_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf1_oensel_0](iomux_altf1_oensel_0) module"]
pub type IOMUX_ALTF1_OENSEL_0 = crate::Reg<u32, _IOMUX_ALTF1_OENSEL_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF1_OENSEL_0;
#[doc = "`read()` method returns [iomux_altf1_oensel_0::R](iomux_altf1_oensel_0::R) reader structure"]
impl crate::Readable for IOMUX_ALTF1_OENSEL_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf1_oensel_0::W](iomux_altf1_oensel_0::W) writer structure"]
impl crate::Writable for IOMUX_ALTF1_OENSEL_0 {}
#[doc = ""]
pub mod iomux_altf1_oensel_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf1_oensel_1](iomux_altf1_oensel_1) module"]
pub type IOMUX_ALTF1_OENSEL_1 = crate::Reg<u32, _IOMUX_ALTF1_OENSEL_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF1_OENSEL_1;
#[doc = "`read()` method returns [iomux_altf1_oensel_1::R](iomux_altf1_oensel_1::R) reader structure"]
impl crate::Readable for IOMUX_ALTF1_OENSEL_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf1_oensel_1::W](iomux_altf1_oensel_1::W) writer structure"]
impl crate::Writable for IOMUX_ALTF1_OENSEL_1 {}
#[doc = ""]
pub mod iomux_altf1_oensel_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf1_default_in_0](iomux_altf1_default_in_0) module"]
pub type IOMUX_ALTF1_DEFAULT_IN_0 = crate::Reg<u32, _IOMUX_ALTF1_DEFAULT_IN_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF1_DEFAULT_IN_0;
#[doc = "`read()` method returns [iomux_altf1_default_in_0::R](iomux_altf1_default_in_0::R) reader structure"]
impl crate::Readable for IOMUX_ALTF1_DEFAULT_IN_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf1_default_in_0::W](iomux_altf1_default_in_0::W) writer structure"]
impl crate::Writable for IOMUX_ALTF1_DEFAULT_IN_0 {}
#[doc = ""]
pub mod iomux_altf1_default_in_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf1_default_in_1](iomux_altf1_default_in_1) module"]
pub type IOMUX_ALTF1_DEFAULT_IN_1 = crate::Reg<u32, _IOMUX_ALTF1_DEFAULT_IN_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF1_DEFAULT_IN_1;
#[doc = "`read()` method returns [iomux_altf1_default_in_1::R](iomux_altf1_default_in_1::R) reader structure"]
impl crate::Readable for IOMUX_ALTF1_DEFAULT_IN_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf1_default_in_1::W](iomux_altf1_default_in_1::W) writer structure"]
impl crate::Writable for IOMUX_ALTF1_DEFAULT_IN_1 {}
#[doc = ""]
pub mod iomux_altf1_default_in_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf2_insel_0](iomux_altf2_insel_0) module"]
pub type IOMUX_ALTF2_INSEL_0 = crate::Reg<u32, _IOMUX_ALTF2_INSEL_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF2_INSEL_0;
#[doc = "`read()` method returns [iomux_altf2_insel_0::R](iomux_altf2_insel_0::R) reader structure"]
impl crate::Readable for IOMUX_ALTF2_INSEL_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf2_insel_0::W](iomux_altf2_insel_0::W) writer structure"]
impl crate::Writable for IOMUX_ALTF2_INSEL_0 {}
#[doc = ""]
pub mod iomux_altf2_insel_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf2_insel_1](iomux_altf2_insel_1) module"]
pub type IOMUX_ALTF2_INSEL_1 = crate::Reg<u32, _IOMUX_ALTF2_INSEL_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF2_INSEL_1;
#[doc = "`read()` method returns [iomux_altf2_insel_1::R](iomux_altf2_insel_1::R) reader structure"]
impl crate::Readable for IOMUX_ALTF2_INSEL_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf2_insel_1::W](iomux_altf2_insel_1::W) writer structure"]
impl crate::Writable for IOMUX_ALTF2_INSEL_1 {}
#[doc = ""]
pub mod iomux_altf2_insel_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf2_outsel_0](iomux_altf2_outsel_0) module"]
pub type IOMUX_ALTF2_OUTSEL_0 = crate::Reg<u32, _IOMUX_ALTF2_OUTSEL_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF2_OUTSEL_0;
#[doc = "`read()` method returns [iomux_altf2_outsel_0::R](iomux_altf2_outsel_0::R) reader structure"]
impl crate::Readable for IOMUX_ALTF2_OUTSEL_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf2_outsel_0::W](iomux_altf2_outsel_0::W) writer structure"]
impl crate::Writable for IOMUX_ALTF2_OUTSEL_0 {}
#[doc = ""]
pub mod iomux_altf2_outsel_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf2_outsel_1](iomux_altf2_outsel_1) module"]
pub type IOMUX_ALTF2_OUTSEL_1 = crate::Reg<u32, _IOMUX_ALTF2_OUTSEL_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF2_OUTSEL_1;
#[doc = "`read()` method returns [iomux_altf2_outsel_1::R](iomux_altf2_outsel_1::R) reader structure"]
impl crate::Readable for IOMUX_ALTF2_OUTSEL_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf2_outsel_1::W](iomux_altf2_outsel_1::W) writer structure"]
impl crate::Writable for IOMUX_ALTF2_OUTSEL_1 {}
#[doc = ""]
pub mod iomux_altf2_outsel_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf2_oensel_0](iomux_altf2_oensel_0) module"]
pub type IOMUX_ALTF2_OENSEL_0 = crate::Reg<u32, _IOMUX_ALTF2_OENSEL_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF2_OENSEL_0;
#[doc = "`read()` method returns [iomux_altf2_oensel_0::R](iomux_altf2_oensel_0::R) reader structure"]
impl crate::Readable for IOMUX_ALTF2_OENSEL_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf2_oensel_0::W](iomux_altf2_oensel_0::W) writer structure"]
impl crate::Writable for IOMUX_ALTF2_OENSEL_0 {}
#[doc = ""]
pub mod iomux_altf2_oensel_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf2_oensel_1](iomux_altf2_oensel_1) module"]
pub type IOMUX_ALTF2_OENSEL_1 = crate::Reg<u32, _IOMUX_ALTF2_OENSEL_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF2_OENSEL_1;
#[doc = "`read()` method returns [iomux_altf2_oensel_1::R](iomux_altf2_oensel_1::R) reader structure"]
impl crate::Readable for IOMUX_ALTF2_OENSEL_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf2_oensel_1::W](iomux_altf2_oensel_1::W) writer structure"]
impl crate::Writable for IOMUX_ALTF2_OENSEL_1 {}
#[doc = ""]
pub mod iomux_altf2_oensel_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf2_default_in_0](iomux_altf2_default_in_0) module"]
pub type IOMUX_ALTF2_DEFAULT_IN_0 = crate::Reg<u32, _IOMUX_ALTF2_DEFAULT_IN_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF2_DEFAULT_IN_0;
#[doc = "`read()` method returns [iomux_altf2_default_in_0::R](iomux_altf2_default_in_0::R) reader structure"]
impl crate::Readable for IOMUX_ALTF2_DEFAULT_IN_0 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf2_default_in_0::W](iomux_altf2_default_in_0::W) writer structure"]
impl crate::Writable for IOMUX_ALTF2_DEFAULT_IN_0 {}
#[doc = ""]
pub mod iomux_altf2_default_in_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iomux_altf2_default_in_1](iomux_altf2_default_in_1) module"]
pub type IOMUX_ALTF2_DEFAULT_IN_1 = crate::Reg<u32, _IOMUX_ALTF2_DEFAULT_IN_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOMUX_ALTF2_DEFAULT_IN_1;
#[doc = "`read()` method returns [iomux_altf2_default_in_1::R](iomux_altf2_default_in_1::R) reader structure"]
impl crate::Readable for IOMUX_ALTF2_DEFAULT_IN_1 {}
#[doc = "`write(|w| ..)` method takes [iomux_altf2_default_in_1::W](iomux_altf2_default_in_1::W) writer structure"]
impl crate::Writable for IOMUX_ALTF2_DEFAULT_IN_1 {}
#[doc = ""]
pub mod iomux_altf2_default_in_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_dso_0](iopad_dso_0) module"]
pub type IOPAD_DSO_0 = crate::Reg<u32, _IOPAD_DSO_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_DSO_0;
#[doc = "`read()` method returns [iopad_dso_0::R](iopad_dso_0::R) reader structure"]
impl crate::Readable for IOPAD_DSO_0 {}
#[doc = "`write(|w| ..)` method takes [iopad_dso_0::W](iopad_dso_0::W) writer structure"]
impl crate::Writable for IOPAD_DSO_0 {}
#[doc = ""]
pub mod iopad_dso_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_dso_1](iopad_dso_1) module"]
pub type IOPAD_DSO_1 = crate::Reg<u32, _IOPAD_DSO_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_DSO_1;
#[doc = "`read()` method returns [iopad_dso_1::R](iopad_dso_1::R) reader structure"]
impl crate::Readable for IOPAD_DSO_1 {}
#[doc = "`write(|w| ..)` method takes [iopad_dso_1::W](iopad_dso_1::W) writer structure"]
impl crate::Writable for IOPAD_DSO_1 {}
#[doc = ""]
pub mod iopad_dso_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_ds1_0](iopad_ds1_0) module"]
pub type IOPAD_DS1_0 = crate::Reg<u32, _IOPAD_DS1_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_DS1_0;
#[doc = "`read()` method returns [iopad_ds1_0::R](iopad_ds1_0::R) reader structure"]
impl crate::Readable for IOPAD_DS1_0 {}
#[doc = "`write(|w| ..)` method takes [iopad_ds1_0::W](iopad_ds1_0::W) writer structure"]
impl crate::Writable for IOPAD_DS1_0 {}
#[doc = ""]
pub mod iopad_ds1_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_ds1_1](iopad_ds1_1) module"]
pub type IOPAD_DS1_1 = crate::Reg<u32, _IOPAD_DS1_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_DS1_1;
#[doc = "`read()` method returns [iopad_ds1_1::R](iopad_ds1_1::R) reader structure"]
impl crate::Readable for IOPAD_DS1_1 {}
#[doc = "`write(|w| ..)` method takes [iopad_ds1_1::W](iopad_ds1_1::W) writer structure"]
impl crate::Writable for IOPAD_DS1_1 {}
#[doc = ""]
pub mod iopad_ds1_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_pe_0](iopad_pe_0) module"]
pub type IOPAD_PE_0 = crate::Reg<u32, _IOPAD_PE_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_PE_0;
#[doc = "`read()` method returns [iopad_pe_0::R](iopad_pe_0::R) reader structure"]
impl crate::Readable for IOPAD_PE_0 {}
#[doc = "`write(|w| ..)` method takes [iopad_pe_0::W](iopad_pe_0::W) writer structure"]
impl crate::Writable for IOPAD_PE_0 {}
#[doc = ""]
pub mod iopad_pe_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_pe_1](iopad_pe_1) module"]
pub type IOPAD_PE_1 = crate::Reg<u32, _IOPAD_PE_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_PE_1;
#[doc = "`read()` method returns [iopad_pe_1::R](iopad_pe_1::R) reader structure"]
impl crate::Readable for IOPAD_PE_1 {}
#[doc = "`write(|w| ..)` method takes [iopad_pe_1::W](iopad_pe_1::W) writer structure"]
impl crate::Writable for IOPAD_PE_1 {}
#[doc = ""]
pub mod iopad_pe_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_ps_0](iopad_ps_0) module"]
pub type IOPAD_PS_0 = crate::Reg<u32, _IOPAD_PS_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_PS_0;
#[doc = "`read()` method returns [iopad_ps_0::R](iopad_ps_0::R) reader structure"]
impl crate::Readable for IOPAD_PS_0 {}
#[doc = "`write(|w| ..)` method takes [iopad_ps_0::W](iopad_ps_0::W) writer structure"]
impl crate::Writable for IOPAD_PS_0 {}
#[doc = ""]
pub mod iopad_ps_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_ps_1](iopad_ps_1) module"]
pub type IOPAD_PS_1 = crate::Reg<u32, _IOPAD_PS_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_PS_1;
#[doc = "`read()` method returns [iopad_ps_1::R](iopad_ps_1::R) reader structure"]
impl crate::Readable for IOPAD_PS_1 {}
#[doc = "`write(|w| ..)` method takes [iopad_ps_1::W](iopad_ps_1::W) writer structure"]
impl crate::Writable for IOPAD_PS_1 {}
#[doc = ""]
pub mod iopad_ps_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_sr_0](iopad_sr_0) module"]
pub type IOPAD_SR_0 = crate::Reg<u32, _IOPAD_SR_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_SR_0;
#[doc = "`read()` method returns [iopad_sr_0::R](iopad_sr_0::R) reader structure"]
impl crate::Readable for IOPAD_SR_0 {}
#[doc = "`write(|w| ..)` method takes [iopad_sr_0::W](iopad_sr_0::W) writer structure"]
impl crate::Writable for IOPAD_SR_0 {}
#[doc = ""]
pub mod iopad_sr_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_sr_1](iopad_sr_1) module"]
pub type IOPAD_SR_1 = crate::Reg<u32, _IOPAD_SR_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_SR_1;
#[doc = "`read()` method returns [iopad_sr_1::R](iopad_sr_1::R) reader structure"]
impl crate::Readable for IOPAD_SR_1 {}
#[doc = "`write(|w| ..)` method takes [iopad_sr_1::W](iopad_sr_1::W) writer structure"]
impl crate::Writable for IOPAD_SR_1 {}
#[doc = ""]
pub mod iopad_sr_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_is_0](iopad_is_0) module"]
pub type IOPAD_IS_0 = crate::Reg<u32, _IOPAD_IS_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_IS_0;
#[doc = "`read()` method returns [iopad_is_0::R](iopad_is_0::R) reader structure"]
impl crate::Readable for IOPAD_IS_0 {}
#[doc = "`write(|w| ..)` method takes [iopad_is_0::W](iopad_is_0::W) writer structure"]
impl crate::Writable for IOPAD_IS_0 {}
#[doc = ""]
pub mod iopad_is_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [iopad_is_1](iopad_is_1) module"]
pub type IOPAD_IS_1 = crate::Reg<u32, _IOPAD_IS_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _IOPAD_IS_1;
#[doc = "`read()` method returns [iopad_is_1::R](iopad_is_1::R) reader structure"]
impl crate::Readable for IOPAD_IS_1 {}
#[doc = "`write(|w| ..)` method takes [iopad_is_1::W](iopad_is_1::W) writer structure"]
impl crate::Writable for IOPAD_IS_1 {}
#[doc = ""]
pub mod iopad_is_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [pvt_ctrl](pvt_ctrl) module"]
pub type PVT_CTRL = crate::Reg<u32, _PVT_CTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _PVT_CTRL;
#[doc = "`read()` method returns [pvt_ctrl::R](pvt_ctrl::R) reader structure"]
impl crate::Readable for PVT_CTRL {}
#[doc = "`write(|w| ..)` method takes [pvt_ctrl::W](pvt_ctrl::W) writer structure"]
impl crate::Writable for PVT_CTRL {}
#[doc = ""]
pub mod pvt_ctrl;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [spare0](spare0) module"]
pub type SPARE0 = crate::Reg<u32, _SPARE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SPARE0;
#[doc = "`read()` method returns [spare0::R](spare0::R) reader structure"]
impl crate::Readable for SPARE0 {}
#[doc = "`write(|w| ..)` method takes [spare0::W](spare0::W) writer structure"]
impl crate::Writable for SPARE0 {}
#[doc = ""]
pub mod spare0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [static_conf_sig1](static_conf_sig1) module"]
pub type STATIC_CONF_SIG1 = crate::Reg<u32, _STATIC_CONF_SIG1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _STATIC_CONF_SIG1;
#[doc = "`read()` method returns [static_conf_sig1::R](static_conf_sig1::R) reader structure"]
impl crate::Readable for STATIC_CONF_SIG1 {}
#[doc = "`write(|w| ..)` method takes [static_conf_sig1::W](static_conf_sig1::W) writer structure"]
impl crate::Writable for STATIC_CONF_SIG1 {}
#[doc = ""]
pub mod static_conf_sig1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash_din_0](flash_din_0) module"]
pub type FLASH_DIN_0 = crate::Reg<u32, _FLASH_DIN_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH_DIN_0;
#[doc = "`read()` method returns [flash_din_0::R](flash_din_0::R) reader structure"]
impl crate::Readable for FLASH_DIN_0 {}
#[doc = "`write(|w| ..)` method takes [flash_din_0::W](flash_din_0::W) writer structure"]
impl crate::Writable for FLASH_DIN_0 {}
#[doc = ""]
pub mod flash_din_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash_din_1](flash_din_1) module"]
pub type FLASH_DIN_1 = crate::Reg<u32, _FLASH_DIN_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH_DIN_1;
#[doc = "`read()` method returns [flash_din_1::R](flash_din_1::R) reader structure"]
impl crate::Readable for FLASH_DIN_1 {}
#[doc = "`write(|w| ..)` method takes [flash_din_1::W](flash_din_1::W) writer structure"]
impl crate::Writable for FLASH_DIN_1 {}
#[doc = ""]
pub mod flash_din_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash_din_2](flash_din_2) module"]
pub type FLASH_DIN_2 = crate::Reg<u32, _FLASH_DIN_2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH_DIN_2;
#[doc = "`read()` method returns [flash_din_2::R](flash_din_2::R) reader structure"]
impl crate::Readable for FLASH_DIN_2 {}
#[doc = "`write(|w| ..)` method takes [flash_din_2::W](flash_din_2::W) writer structure"]
impl crate::Writable for FLASH_DIN_2 {}
#[doc = ""]
pub mod flash_din_2;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash_din_3](flash_din_3) module"]
pub type FLASH_DIN_3 = crate::Reg<u32, _FLASH_DIN_3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH_DIN_3;
#[doc = "`read()` method returns [flash_din_3::R](flash_din_3::R) reader structure"]
impl crate::Readable for FLASH_DIN_3 {}
#[doc = "`write(|w| ..)` method takes [flash_din_3::W](flash_din_3::W) writer structure"]
impl crate::Writable for FLASH_DIN_3 {}
#[doc = ""]
pub mod flash_din_3;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash0_dout_0](flash0_dout_0) module"]
pub type FLASH0_DOUT_0 = crate::Reg<u32, _FLASH0_DOUT_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH0_DOUT_0;
#[doc = "`read()` method returns [flash0_dout_0::R](flash0_dout_0::R) reader structure"]
impl crate::Readable for FLASH0_DOUT_0 {}
#[doc = ""]
pub mod flash0_dout_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash0_dout_1](flash0_dout_1) module"]
pub type FLASH0_DOUT_1 = crate::Reg<u32, _FLASH0_DOUT_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH0_DOUT_1;
#[doc = "`read()` method returns [flash0_dout_1::R](flash0_dout_1::R) reader structure"]
impl crate::Readable for FLASH0_DOUT_1 {}
#[doc = ""]
pub mod flash0_dout_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash0_dout_2](flash0_dout_2) module"]
pub type FLASH0_DOUT_2 = crate::Reg<u32, _FLASH0_DOUT_2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH0_DOUT_2;
#[doc = "`read()` method returns [flash0_dout_2::R](flash0_dout_2::R) reader structure"]
impl crate::Readable for FLASH0_DOUT_2 {}
#[doc = ""]
pub mod flash0_dout_2;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash0_dout_3](flash0_dout_3) module"]
pub type FLASH0_DOUT_3 = crate::Reg<u32, _FLASH0_DOUT_3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH0_DOUT_3;
#[doc = "`read()` method returns [flash0_dout_3::R](flash0_dout_3::R) reader structure"]
impl crate::Readable for FLASH0_DOUT_3 {}
#[doc = ""]
pub mod flash0_dout_3;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash1_dout_0](flash1_dout_0) module"]
pub type FLASH1_DOUT_0 = crate::Reg<u32, _FLASH1_DOUT_0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH1_DOUT_0;
#[doc = "`read()` method returns [flash1_dout_0::R](flash1_dout_0::R) reader structure"]
impl crate::Readable for FLASH1_DOUT_0 {}
#[doc = ""]
pub mod flash1_dout_0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash1_dout_1](flash1_dout_1) module"]
pub type FLASH1_DOUT_1 = crate::Reg<u32, _FLASH1_DOUT_1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH1_DOUT_1;
#[doc = "`read()` method returns [flash1_dout_1::R](flash1_dout_1::R) reader structure"]
impl crate::Readable for FLASH1_DOUT_1 {}
#[doc = ""]
pub mod flash1_dout_1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash1_dout_2](flash1_dout_2) module"]
pub type FLASH1_DOUT_2 = crate::Reg<u32, _FLASH1_DOUT_2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH1_DOUT_2;
#[doc = "`read()` method returns [flash1_dout_2::R](flash1_dout_2::R) reader structure"]
impl crate::Readable for FLASH1_DOUT_2 {}
#[doc = ""]
pub mod flash1_dout_2;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [flash1_dout_3](flash1_dout_3) module"]
pub type FLASH1_DOUT_3 = crate::Reg<u32, _FLASH1_DOUT_3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH1_DOUT_3;
#[doc = "`read()` method returns [flash1_dout_3::R](flash1_dout_3::R) reader structure"]
impl crate::Readable for FLASH1_DOUT_3 {}
#[doc = ""]
pub mod flash1_dout_3;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [selection_control_reg](selection_control_reg) module"]
pub type SELECTION_CONTROL_REG = crate::Reg<u32, _SELECTION_CONTROL_REG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SELECTION_CONTROL_REG;
#[doc = "`read()` method returns [selection_control_reg::R](selection_control_reg::R) reader structure"]
impl crate::Readable for SELECTION_CONTROL_REG {}
#[doc = "`write(|w| ..)` method takes [selection_control_reg::W](selection_control_reg::W) writer structure"]
impl crate::Writable for SELECTION_CONTROL_REG {}
#[doc = ""]
pub mod selection_control_reg;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [az_rom_remap_mask](az_rom_remap_mask) module"]
pub type AZ_ROM_REMAP_MASK = crate::Reg<u32, _AZ_ROM_REMAP_MASK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _AZ_ROM_REMAP_MASK;
#[doc = "`read()` method returns [az_rom_remap_mask::R](az_rom_remap_mask::R) reader structure"]
impl crate::Readable for AZ_ROM_REMAP_MASK {}
#[doc = "`write(|w| ..)` method takes [az_rom_remap_mask::W](az_rom_remap_mask::W) writer structure"]
impl crate::Writable for AZ_ROM_REMAP_MASK {}
#[doc = ""]
pub mod az_rom_remap_mask;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [az_rom_remap_offset](az_rom_remap_offset) module"]
pub type AZ_ROM_REMAP_OFFSET = crate::Reg<u32, _AZ_ROM_REMAP_OFFSET>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _AZ_ROM_REMAP_OFFSET;
#[doc = "`read()` method returns [az_rom_remap_offset::R](az_rom_remap_offset::R) reader structure"]
impl crate::Readable for AZ_ROM_REMAP_OFFSET {}
#[doc = "`write(|w| ..)` method takes [az_rom_remap_offset::W](az_rom_remap_offset::W) writer structure"]
impl crate::Writable for AZ_ROM_REMAP_OFFSET {}
#[doc = ""]
pub mod az_rom_remap_offset;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [az_code_remap_mask](az_code_remap_mask) module"]
pub type AZ_CODE_REMAP_MASK = crate::Reg<u32, _AZ_CODE_REMAP_MASK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _AZ_CODE_REMAP_MASK;
#[doc = "`read()` method returns [az_code_remap_mask::R](az_code_remap_mask::R) reader structure"]
impl crate::Readable for AZ_CODE_REMAP_MASK {}
#[doc = "`write(|w| ..)` method takes [az_code_remap_mask::W](az_code_remap_mask::W) writer structure"]
impl crate::Writable for AZ_CODE_REMAP_MASK {}
#[doc = ""]
pub mod az_code_remap_mask;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [az_code_remap_offset](az_code_remap_offset) module"]
pub type AZ_CODE_REMAP_OFFSET = crate::Reg<u32, _AZ_CODE_REMAP_OFFSET>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _AZ_CODE_REMAP_OFFSET;
#[doc = "`read()` method returns [az_code_remap_offset::R](az_code_remap_offset::R) reader structure"]
impl crate::Readable for AZ_CODE_REMAP_OFFSET {}
#[doc = "`write(|w| ..)` method takes [az_code_remap_offset::W](az_code_remap_offset::W) writer structure"]
impl crate::Writable for AZ_CODE_REMAP_OFFSET {}
#[doc = ""]
pub mod az_code_remap_offset;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [az_sys_remap_mask](az_sys_remap_mask) module"]
pub type AZ_SYS_REMAP_MASK = crate::Reg<u32, _AZ_SYS_REMAP_MASK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _AZ_SYS_REMAP_MASK;
#[doc = "`read()` method returns [az_sys_remap_mask::R](az_sys_remap_mask::R) reader structure"]
impl crate::Readable for AZ_SYS_REMAP_MASK {}
#[doc = "`write(|w| ..)` method takes [az_sys_remap_mask::W](az_sys_remap_mask::W) writer structure"]
impl crate::Writable for AZ_SYS_REMAP_MASK {}
#[doc = ""]
pub mod az_sys_remap_mask;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [az_sys_remap_offset](az_sys_remap_offset) module"]
pub type AZ_SYS_REMAP_OFFSET = crate::Reg<u32, _AZ_SYS_REMAP_OFFSET>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _AZ_SYS_REMAP_OFFSET;
#[doc = "`read()` method returns [az_sys_remap_offset::R](az_sys_remap_offset::R) reader structure"]
impl crate::Readable for AZ_SYS_REMAP_OFFSET {}
#[doc = "`write(|w| ..)` method takes [az_sys_remap_offset::W](az_sys_remap_offset::W) writer structure"]
impl crate::Writable for AZ_SYS_REMAP_OFFSET {}
#[doc = ""]
pub mod az_sys_remap_offset;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [az_ctrl](az_ctrl) module"]
pub type AZ_CTRL = crate::Reg<u32, _AZ_CTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _AZ_CTRL;
#[doc = "`read()` method returns [az_ctrl::R](az_ctrl::R) reader structure"]
impl crate::Readable for AZ_CTRL {}
#[doc = "`write(|w| ..)` method takes [az_ctrl::W](az_ctrl::W) writer structure"]
impl crate::Writable for AZ_CTRL {}
#[doc = ""]
pub mod az_ctrl;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sse_otp_rd_data](sse_otp_rd_data) module"]
pub type SSE_OTP_RD_DATA = crate::Reg<u32, _SSE_OTP_RD_DATA>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SSE_OTP_RD_DATA;
#[doc = "`read()` method returns [sse_otp_rd_data::R](sse_otp_rd_data::R) reader structure"]
impl crate::Readable for SSE_OTP_RD_DATA {}
#[doc = ""]
pub mod sse_otp_rd_data;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [az_otp_rd_data](az_otp_rd_data) module"]
pub type AZ_OTP_RD_DATA = crate::Reg<u32, _AZ_OTP_RD_DATA>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _AZ_OTP_RD_DATA;
#[doc = "`read()` method returns [az_otp_rd_data::R](az_otp_rd_data::R) reader structure"]
impl crate::Readable for AZ_OTP_RD_DATA {}
#[doc = "`write(|w| ..)` method takes [az_otp_rd_data::W](az_otp_rd_data::W) writer structure"]
impl crate::Writable for AZ_OTP_RD_DATA {}
#[doc = ""]
pub mod az_otp_rd_data;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [spare_ctrl0](spare_ctrl0) module"]
pub type SPARE_CTRL0 = crate::Reg<u32, _SPARE_CTRL0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SPARE_CTRL0;
#[doc = "`read()` method returns [spare_ctrl0::R](spare_ctrl0::R) reader structure"]
impl crate::Readable for SPARE_CTRL0 {}
#[doc = "`write(|w| ..)` method takes [spare_ctrl0::W](spare_ctrl0::W) writer structure"]
impl crate::Writable for SPARE_CTRL0 {}
#[doc = ""]
pub mod spare_ctrl0;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [spare_ctrl1](spare_ctrl1) module"]
pub type SPARE_CTRL1 = crate::Reg<u32, _SPARE_CTRL1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SPARE_CTRL1;
#[doc = "`read()` method returns [spare_ctrl1::R](spare_ctrl1::R) reader structure"]
impl crate::Readable for SPARE_CTRL1 {}
#[doc = "`write(|w| ..)` method takes [spare_ctrl1::W](spare_ctrl1::W) writer structure"]
impl crate::Writable for SPARE_CTRL1 {}
#[doc = ""]
pub mod spare_ctrl1;
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [chip_id](chip_id) module"]
pub type CHIP_ID = crate::Reg<u32, _CHIP_ID>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CHIP_ID;
#[doc = "`read()` method returns [chip_id::R](chip_id::R) reader structure"]
impl crate::Readable for CHIP_ID {}
#[doc = ""]
pub mod chip_id;