File size: 90,407 Bytes
574224a | 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 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 | /////////////////////////////////////////////////////////////
// Created by: Synopsys DC Ultra(TM) in wire load mode
// Version : R-2020.09-SP3a
// Date : Mon Sep 15 00:07:13 2025
/////////////////////////////////////////////////////////////
module apb4_timer ( apb4_pclk, apb4_presetn, apb4_paddr, apb4_pprot, apb4_psel,
apb4_penable, apb4_pwrite, apb4_pwdata, apb4_pstrb, apb4_pready,
apb4_prdata, apb4_pslverr, timer_exclk_i, timer_capch_i, timer_irq_o
);
input [31:0] apb4_paddr;
input [2:0] apb4_pprot;
input [31:0] apb4_pwdata;
input [3:0] apb4_pstrb;
output [31:0] apb4_prdata;
input apb4_pclk, apb4_presetn, apb4_psel, apb4_penable, apb4_pwrite,
timer_exclk_i, timer_capch_i;
output apb4_pready, apb4_pslverr, timer_irq_o;
wire s_tr_clk, s_inclk, s_normal_mode, \s_tim_stat_q[0] , s_norm_trg1,
s_norm_trg2, s_cnt_ov, \s_tim_stat_d[0] , s_irq_d,
\u_clk_int_even_div_simple/s_clk_d ,
\u_irq_cdc_sync/s_sync_dat_0__0_ ,
\u_tim_cnt_counter/u_delta_counter/N105 ,
\u_tim_cnt_counter/u_delta_counter/N104 ,
\u_tim_cnt_counter/u_delta_counter/N103 ,
\u_tim_cnt_counter/u_delta_counter/N102 ,
\u_tim_cnt_counter/u_delta_counter/N101 ,
\u_tim_cnt_counter/u_delta_counter/N100 ,
\u_tim_cnt_counter/u_delta_counter/N99 ,
\u_tim_cnt_counter/u_delta_counter/N98 ,
\u_tim_cnt_counter/u_delta_counter/N97 ,
\u_tim_cnt_counter/u_delta_counter/N96 ,
\u_tim_cnt_counter/u_delta_counter/N95 ,
\u_tim_cnt_counter/u_delta_counter/N94 ,
\u_tim_cnt_counter/u_delta_counter/N93 ,
\u_tim_cnt_counter/u_delta_counter/N92 ,
\u_tim_cnt_counter/u_delta_counter/N91 ,
\u_tim_cnt_counter/u_delta_counter/N90 ,
\u_tim_cnt_counter/u_delta_counter/N89 ,
\u_tim_cnt_counter/u_delta_counter/N88 ,
\u_tim_cnt_counter/u_delta_counter/N87 ,
\u_tim_cnt_counter/u_delta_counter/N86 ,
\u_tim_cnt_counter/u_delta_counter/N85 ,
\u_tim_cnt_counter/u_delta_counter/N84 ,
\u_tim_cnt_counter/u_delta_counter/N83 ,
\u_tim_cnt_counter/u_delta_counter/N82 ,
\u_tim_cnt_counter/u_delta_counter/N81 ,
\u_tim_cnt_counter/u_delta_counter/N80 ,
\u_tim_cnt_counter/u_delta_counter/N79 ,
\u_tim_cnt_counter/u_delta_counter/N78 ,
\u_tim_cnt_counter/u_delta_counter/N77 ,
\u_tim_cnt_counter/u_delta_counter/N76 ,
\u_tim_cnt_counter/u_delta_counter/N75 ,
\u_tim_cnt_counter/u_delta_counter/s_cnt_d[32] ,
\u_tim_cnt_counter/u_delta_counter/n33 ,
\u_tim_cnt_counter/u_delta_counter/n34 ,
\u_tim_cnt_counter/u_delta_counter/n35 ,
\u_tim_cnt_counter/u_delta_counter/n36 ,
\u_tim_cnt_counter/u_delta_counter/n37 ,
\u_tim_cnt_counter/u_delta_counter/n38 ,
\u_tim_cnt_counter/u_delta_counter/n39 ,
\u_tim_cnt_counter/u_delta_counter/n40 ,
\u_tim_cnt_counter/u_delta_counter/n41 ,
\u_tim_cnt_counter/u_delta_counter/n42 ,
\u_tim_cnt_counter/u_delta_counter/n43 ,
\u_tim_cnt_counter/u_delta_counter/n44 ,
\u_tim_cnt_counter/u_delta_counter/n45 ,
\u_tim_cnt_counter/u_delta_counter/n46 ,
\u_tim_cnt_counter/u_delta_counter/n47 ,
\u_tim_cnt_counter/u_delta_counter/n48 ,
\u_tim_cnt_counter/u_delta_counter/n49 ,
\u_tim_cnt_counter/u_delta_counter/n50 ,
\u_tim_cnt_counter/u_delta_counter/n51 ,
\u_tim_cnt_counter/u_delta_counter/n52 ,
\u_tim_cnt_counter/u_delta_counter/n53 ,
\u_tim_cnt_counter/u_delta_counter/n54 ,
\u_tim_cnt_counter/u_delta_counter/n55 ,
\u_tim_cnt_counter/u_delta_counter/n56 ,
\u_tim_cnt_counter/u_delta_counter/n57 ,
\u_tim_cnt_counter/u_delta_counter/n58 ,
\u_tim_cnt_counter/u_delta_counter/n59 ,
\u_tim_cnt_counter/u_delta_counter/n60 ,
\u_tim_cnt_counter/u_delta_counter/n61 ,
\u_tim_cnt_counter/u_delta_counter/n62 ,
\u_tim_cnt_counter/u_delta_counter/n63 ,
\u_tim_cnt_counter/u_delta_counter/n64 , n51, n52, n53, n54, n55, n56,
n57, n58, n59, n60, n61, n62, n63, n64, n65, n66, n67, n68, n69, n70,
n71, n72, n73, n74, n75, n76, n77, n78, n79, n80, n81, n82,
\DP_OP_32J1_123_8669/n32 , \DP_OP_32J1_123_8669/n31 ,
\DP_OP_32J1_123_8669/n30 , \DP_OP_32J1_123_8669/n29 ,
\DP_OP_32J1_123_8669/n28 , \DP_OP_32J1_123_8669/n27 ,
\DP_OP_32J1_123_8669/n26 , \DP_OP_32J1_123_8669/n25 ,
\DP_OP_32J1_123_8669/n24 , \DP_OP_32J1_123_8669/n23 ,
\DP_OP_32J1_123_8669/n22 , \DP_OP_32J1_123_8669/n21 ,
\DP_OP_32J1_123_8669/n20 , \DP_OP_32J1_123_8669/n19 ,
\DP_OP_32J1_123_8669/n18 , \DP_OP_32J1_123_8669/n17 ,
\DP_OP_32J1_123_8669/n16 , \DP_OP_32J1_123_8669/n15 ,
\DP_OP_32J1_123_8669/n14 , \DP_OP_32J1_123_8669/n13 ,
\DP_OP_32J1_123_8669/n12 , \DP_OP_32J1_123_8669/n11 ,
\DP_OP_32J1_123_8669/n10 , \DP_OP_32J1_123_8669/n9 ,
\DP_OP_32J1_123_8669/n8 , \DP_OP_32J1_123_8669/n7 ,
\DP_OP_32J1_123_8669/n6 , \DP_OP_32J1_123_8669/n5 ,
\DP_OP_32J1_123_8669/n4 , \DP_OP_32J1_123_8669/n3 ,
\DP_OP_32J1_123_8669/n2 , n84, n85, n86, n87, n88, n89, n90, n91, n92,
n93, n94, n95, n96, n97, n98, n99, n100, n101, n102, n103, n104, n105,
n106, n107, n108, n109, n110, n111, n112, n113, n114, n115, n116,
n117, n118, n119, n120, n121, n122, n123, n124, n125, n126, n127,
n128, n129, n130, n131, n132, n133, n134, n135, n136, n137, n138,
n139, n140, n141, n142, n143, n144, n145, n146, n147, n148, n149,
n150, n151, n152, n153, n154, n155, n156, n157, n158, n159, n160,
n161, n162, n163, n164, n165, n166, n167, n168, n169, n170, n171,
n172, n173, n174, n175, n176, n177, n178, n179, n180, n181, n182,
n183, n184, n185, n186, n187, n188, n189, n190, n191, n192, n193,
n194, n195, n196, n197, n198, n199, n200, n201, n202, n203, n204,
n205, n206, n207, n208, n209, n210, n211, n212, n213, n214, n215,
n216, n217, n218, n219, n220, n221, n222, n223, n224, n225, n226,
n227, n228, n229, n230, n231, n232, n233, n234, n235, n236, n237,
n238, n239, n240, n241, n242, n243, n244, n245, n246, n247, n248,
n249, n250, n251, n252, n253, n254, n255, n256, n257, n258, n259,
n260, n261, n262, n263, n264, n265, n266, n267, n268, n269, n270,
n271, n272, n273, n274, n275, n276, n277, n278, n279, n280, n281,
n282, n283, n284, n285, n286, n287, n288, n289, n290, n291, n292,
n293, n294, n295, n296, n297, n298, n299, n300, n301, n302, n303,
n304, n305, n306, n307, n308, n309, n310, n311, n312, n313, n314,
n315, n316, n317, n318, n319, n320, n321, n322, n323, n324, n325,
n326, n327, n328, n329, n330, n331, n332, n333, n334, n335, n336,
n337, n338, n339, n340, n341, n342, n343, n344, n345, n346, n347,
n348, n349, n350, n351, n352, n353, n354, n355, n356, n357, n358,
n359, n360, n361, n362, n363, n364, n365, n366, n367, n368, n369,
n370, n371, n372, n373, n374, n375, n376, n377, n378, n379, n380,
n381, n382, n383, n384, n385, n386, n387, n388, n389, n390, n391,
n392, n393, n394, n395, n396, n397, n398, n399, n400, n401, n402,
n403, n404, n405, n406, n407, n408, n409, n410, n411, n412, n413,
n414, n415, n416, n417, n418, n419, n420, n421, n422, n423, n424,
n425, n426, n427, n428, n429, n430, n431, n432, n433, n434, n435,
n436, n437, n438, n439, n440, n441, n442, n443, n444, n445, n446,
n447, n448, n449, n450, n451, n452, n453, n454, n455, n456, n457,
n458, n459, n460, n461, n462, n463, n464, n465, n466, n467, n468,
n469, n470, n471, n472, n473, n474, n475, n476, n477, n478, n479,
n480, n481, n482, n483, n484, n485, n486, n487, n488, n489, n490,
n491, n492, n493, n494, n495, n496, n497, n498, n499, n500, n501,
n502, n503, n504, n505, n506, n507, n508, n509, n510, n511, n512,
n513, n514, n515, n516, n517, n518, n519, n520, n521, n522, n523,
n524, n525, n526, n527, n528, n529, n530, n531, n532, n533, n534,
n535, n536, n537, n538, n539, n540, n541, n542, n543, n544, n545,
n546, n547, n548, n549, n550;
wire [3:0] s_tim_ctrl_q;
wire [3:0] s_tim_ctrl_d;
wire [19:0] s_tim_pscr_d;
wire [19:0] s_tim_pscr_q;
wire [31:0] s_tim_cmp_q;
wire [31:0] s_tim_cmp_d;
wire [2:0] \u_clk_int_even_div_simple/s_div_done_d ;
wire [2:0] \u_clk_int_even_div_simple/s_div_done_q ;
wire [19:0] \u_clk_int_even_div_simple/s_cnt_d ;
wire [19:0] \u_clk_int_even_div_simple/s_cnt_q ;
sky130_fd_sc_hd__dfrtp_1 \u_tim_ctrl_dffr/dat_o_reg_0_ ( .D(s_tim_ctrl_d[0]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_ctrl_q[0]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_ctrl_dffr/dat_o_reg_1_ ( .D(s_tim_ctrl_d[1]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_ctrl_q[1]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_ctrl_dffr/dat_o_reg_2_ ( .D(s_tim_ctrl_d[2]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_ctrl_q[2]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_0_ ( .D(s_tim_pscr_d[0]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_pscr_q[0]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_2_ ( .D(s_tim_pscr_d[2]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_pscr_q[2]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_3_ ( .D(s_tim_pscr_d[3]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_pscr_q[3]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_7_ ( .D(s_tim_pscr_d[7]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_pscr_q[7]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_8_ ( .D(s_tim_pscr_d[8]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_pscr_q[8]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_10_ ( .D(
s_tim_pscr_d[10]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[10]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_11_ ( .D(
s_tim_pscr_d[11]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[11]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_12_ ( .D(
s_tim_pscr_d[12]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[12]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_13_ ( .D(
s_tim_pscr_d[13]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[13]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_15_ ( .D(
s_tim_pscr_d[15]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[15]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_16_ ( .D(
s_tim_pscr_d[16]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[16]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_17_ ( .D(
s_tim_pscr_d[17]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[17]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_18_ ( .D(
s_tim_pscr_d[18]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[18]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_19_ ( .D(
s_tim_pscr_d[19]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[19]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_0_ ( .D(s_tim_cmp_d[0]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[0]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_1_ ( .D(s_tim_cmp_d[1]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[1]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_2_ ( .D(s_tim_cmp_d[2]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[2]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_3_ ( .D(s_tim_cmp_d[3]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[3]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_4_ ( .D(s_tim_cmp_d[4]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[4]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_5_ ( .D(s_tim_cmp_d[5]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[5]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_6_ ( .D(s_tim_cmp_d[6]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[6]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_7_ ( .D(s_tim_cmp_d[7]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[7]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_8_ ( .D(s_tim_cmp_d[8]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[8]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_9_ ( .D(s_tim_cmp_d[9]),
.CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[9]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_10_ ( .D(s_tim_cmp_d[10]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[10]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_12_ ( .D(s_tim_cmp_d[12]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[12]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_13_ ( .D(s_tim_cmp_d[13]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[13]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_14_ ( .D(s_tim_cmp_d[14]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[14]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_15_ ( .D(s_tim_cmp_d[15]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[15]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_16_ ( .D(s_tim_cmp_d[16]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[16]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_17_ ( .D(s_tim_cmp_d[17]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[17]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_18_ ( .D(s_tim_cmp_d[18]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[18]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_19_ ( .D(s_tim_cmp_d[19]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[19]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_20_ ( .D(s_tim_cmp_d[20]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[20]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_21_ ( .D(s_tim_cmp_d[21]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[21]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_22_ ( .D(s_tim_cmp_d[22]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[22]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_23_ ( .D(s_tim_cmp_d[23]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[23]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_24_ ( .D(s_tim_cmp_d[24]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[24]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_25_ ( .D(s_tim_cmp_d[25]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[25]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_27_ ( .D(s_tim_cmp_d[27]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[27]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_28_ ( .D(s_tim_cmp_d[28]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[28]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_29_ ( .D(s_tim_cmp_d[29]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[29]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_30_ ( .D(s_tim_cmp_d[30]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[30]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_31_ ( .D(s_tim_cmp_d[31]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[31]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_ready_dffr/dat_o_reg_2_ (
.D(\u_clk_int_even_div_simple/s_div_done_d [2]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_div_done_q [2]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_1_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [1]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [1]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_2_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [2]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [2]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_4_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [4]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [4]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_5_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [5]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [5]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_6_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [6]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [6]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_7_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [7]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [7]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_8_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [8]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [8]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_9_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [9]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [9]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_10_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [10]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [10]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_11_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [11]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [11]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_12_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [12]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [12]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_13_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [13]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [13]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_14_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [14]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [14]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_15_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [15]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [15]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_16_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [16]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [16]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_17_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [17]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [17]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_18_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [18]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [18]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_19_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [19]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [19]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_ready_dffr/dat_o_reg_0_ (
.D(\u_clk_int_even_div_simple/s_div_done_d [0]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_div_done_q [0]) );
sky130_fd_sc_hd__dfrtp_1 \u_cnt_cdc_sync/genblk1_0__genblk1_u_sync_dffr/dat_o_reg_0_ (
.D(s_normal_mode), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
s_norm_trg1) );
sky130_fd_sc_hd__dfrtp_1 \u_cnt_cdc_sync/genblk1_1__genblk1_u_sync_dffr/dat_o_reg_0_ (
.D(s_norm_trg1), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
s_norm_trg2) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_32_ (
.D(\u_tim_cnt_counter/u_delta_counter/s_cnt_d[32] ), .CLK(s_tr_clk),
.RESET_B(apb4_presetn), .Q(s_cnt_ov) );
sky130_fd_sc_hd__dfrtp_1 \u_irq_cdc_sync/genblk1_0__genblk1_u_sync_dffr/dat_o_reg_0_ (
.D(s_cnt_ov), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
\u_irq_cdc_sync/s_sync_dat_0__0_ ) );
sky130_fd_sc_hd__dfrtp_1 \u_irq_cdc_sync/genblk1_1__genblk1_u_sync_dffr/dat_o_reg_0_ (
.D(\u_irq_cdc_sync/s_sync_dat_0__0_ ), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\s_tim_stat_d[0] ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_stat_dffr/dat_o_reg_0_ ( .D(
\s_tim_stat_d[0] ), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
\s_tim_stat_q[0] ) );
sky130_fd_sc_hd__dfrtp_1 \u_irq_dffr/dat_o_reg_0_ ( .D(s_irq_d), .CLK(
apb4_pclk), .RESET_B(apb4_presetn), .Q(timer_irq_o) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_31_ (
.D(n82), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n33 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_30_ (
.D(n81), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n34 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_29_ (
.D(n80), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n35 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_28_ (
.D(n79), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n36 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_27_ (
.D(n78), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n37 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_26_ (
.D(n77), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n38 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_25_ (
.D(n76), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n39 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_24_ (
.D(n75), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n40 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_23_ (
.D(n74), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n41 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_21_ (
.D(n72), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n43 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_20_ (
.D(n71), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n44 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_19_ (
.D(n70), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n45 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_18_ (
.D(n69), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n46 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_17_ (
.D(n68), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n47 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_16_ (
.D(n67), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n48 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_15_ (
.D(n66), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n49 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_14_ (
.D(n65), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n50 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_13_ (
.D(n64), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n51 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_12_ (
.D(n63), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n52 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_11_ (
.D(n62), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n53 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_10_ (
.D(n61), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n54 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_9_ (
.D(n60), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n55 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_8_ (
.D(n59), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n56 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_6_ (
.D(n57), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n58 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_5_ (
.D(n56), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n59 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_4_ (
.D(n55), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n60 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_3_ (
.D(n54), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n61 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_2_ (
.D(n53), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n62 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_1_ (
.D(n52), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n63 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_0_ (
.D(n51), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n64 ) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_9_ ( .D(s_tim_pscr_d[9]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_pscr_q[9]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_ready_dffr/dat_o_reg_1_ (
.D(\u_clk_int_even_div_simple/s_div_done_d [1]), .CLK(apb4_pclk),
.RESET_B(apb4_presetn), .Q(\u_clk_int_even_div_simple/s_div_done_q [1]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_14_ ( .D(
s_tim_pscr_d[14]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(
s_tim_pscr_q[14]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_pscr_dffr/dat_o_reg_5_ ( .D(s_tim_pscr_d[5]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_pscr_q[5]) );
sky130_fd_sc_hd__dfrtp_2 \u_tim_ctrl_dffr/dat_o_reg_3_ ( .D(s_tim_ctrl_d[3]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_ctrl_q[3]) );
sky130_fd_sc_hd__mux2_2 U202 ( .A0(s_inclk), .A1(timer_exclk_i), .S(
s_tim_ctrl_q[1]), .X(s_tr_clk) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U33 ( .A(
\u_tim_cnt_counter/u_delta_counter/n63 ), .B(s_tim_ctrl_q[3]), .CIN(
\u_tim_cnt_counter/u_delta_counter/n64 ), .COUT(
\DP_OP_32J1_123_8669/n32 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N75 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U32 ( .A(
\u_tim_cnt_counter/u_delta_counter/n62 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n32 ), .COUT(\DP_OP_32J1_123_8669/n31 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N76 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U31 ( .A(
\u_tim_cnt_counter/u_delta_counter/n61 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n31 ), .COUT(\DP_OP_32J1_123_8669/n30 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N77 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U30 ( .A(
\u_tim_cnt_counter/u_delta_counter/n60 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n30 ), .COUT(\DP_OP_32J1_123_8669/n29 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N78 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U29 ( .A(
\u_tim_cnt_counter/u_delta_counter/n59 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n29 ), .COUT(\DP_OP_32J1_123_8669/n28 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N79 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U28 ( .A(
\u_tim_cnt_counter/u_delta_counter/n58 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n28 ), .COUT(\DP_OP_32J1_123_8669/n27 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N80 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U27 ( .A(
\u_tim_cnt_counter/u_delta_counter/n57 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n27 ), .COUT(\DP_OP_32J1_123_8669/n26 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N81 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U26 ( .A(
\u_tim_cnt_counter/u_delta_counter/n56 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n26 ), .COUT(\DP_OP_32J1_123_8669/n25 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N82 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U25 ( .A(
\u_tim_cnt_counter/u_delta_counter/n55 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n25 ), .COUT(\DP_OP_32J1_123_8669/n24 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N83 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U24 ( .A(
\u_tim_cnt_counter/u_delta_counter/n54 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n24 ), .COUT(\DP_OP_32J1_123_8669/n23 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N84 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U23 ( .A(
\u_tim_cnt_counter/u_delta_counter/n53 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n23 ), .COUT(\DP_OP_32J1_123_8669/n22 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N85 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U22 ( .A(
\u_tim_cnt_counter/u_delta_counter/n52 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n22 ), .COUT(\DP_OP_32J1_123_8669/n21 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N86 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U21 ( .A(
\u_tim_cnt_counter/u_delta_counter/n51 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n21 ), .COUT(\DP_OP_32J1_123_8669/n20 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N87 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U20 ( .A(
\u_tim_cnt_counter/u_delta_counter/n50 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n20 ), .COUT(\DP_OP_32J1_123_8669/n19 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N88 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U19 ( .A(
\u_tim_cnt_counter/u_delta_counter/n49 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n19 ), .COUT(\DP_OP_32J1_123_8669/n18 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N89 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U18 ( .A(
\u_tim_cnt_counter/u_delta_counter/n48 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n18 ), .COUT(\DP_OP_32J1_123_8669/n17 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N90 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U17 ( .A(
\u_tim_cnt_counter/u_delta_counter/n47 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n17 ), .COUT(\DP_OP_32J1_123_8669/n16 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N91 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U16 ( .A(
\u_tim_cnt_counter/u_delta_counter/n46 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n16 ), .COUT(\DP_OP_32J1_123_8669/n15 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N92 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U15 ( .A(
\u_tim_cnt_counter/u_delta_counter/n45 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n15 ), .COUT(\DP_OP_32J1_123_8669/n14 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N93 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U14 ( .A(
\u_tim_cnt_counter/u_delta_counter/n44 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n14 ), .COUT(\DP_OP_32J1_123_8669/n13 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N94 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U13 ( .A(
\u_tim_cnt_counter/u_delta_counter/n43 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n13 ), .COUT(\DP_OP_32J1_123_8669/n12 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N95 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U12 ( .A(
\u_tim_cnt_counter/u_delta_counter/n42 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n12 ), .COUT(\DP_OP_32J1_123_8669/n11 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N96 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U11 ( .A(
\u_tim_cnt_counter/u_delta_counter/n41 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n11 ), .COUT(\DP_OP_32J1_123_8669/n10 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N97 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U10 ( .A(
\u_tim_cnt_counter/u_delta_counter/n40 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n10 ), .COUT(\DP_OP_32J1_123_8669/n9 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N98 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U9 ( .A(
\u_tim_cnt_counter/u_delta_counter/n39 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n9 ), .COUT(\DP_OP_32J1_123_8669/n8 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N99 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U8 ( .A(
\u_tim_cnt_counter/u_delta_counter/n38 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n8 ), .COUT(\DP_OP_32J1_123_8669/n7 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N100 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U7 ( .A(
\u_tim_cnt_counter/u_delta_counter/n37 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n7 ), .COUT(\DP_OP_32J1_123_8669/n6 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N101 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U6 ( .A(
\u_tim_cnt_counter/u_delta_counter/n36 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n6 ), .COUT(\DP_OP_32J1_123_8669/n5 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N102 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U5 ( .A(
\u_tim_cnt_counter/u_delta_counter/n35 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n5 ), .COUT(\DP_OP_32J1_123_8669/n4 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N103 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U4 ( .A(
\u_tim_cnt_counter/u_delta_counter/n34 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n4 ), .COUT(\DP_OP_32J1_123_8669/n3 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N104 ) );
sky130_fd_sc_hd__fa_1 \DP_OP_32J1_123_8669/U3 ( .A(
\u_tim_cnt_counter/u_delta_counter/n33 ), .B(s_tim_ctrl_q[3]), .CIN(
\DP_OP_32J1_123_8669/n3 ), .COUT(\DP_OP_32J1_123_8669/n2 ), .SUM(
\u_tim_cnt_counter/u_delta_counter/N105 ) );
sky130_fd_sc_hd__dfrtp_2 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_22_ (
.D(n73), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n42 ) );
sky130_fd_sc_hd__dfrtp_2 \u_tim_cnt_counter/u_delta_counter/u_cnt_dffr/dat_o_reg_7_ (
.D(n58), .CLK(s_tr_clk), .RESET_B(apb4_presetn), .Q(
\u_tim_cnt_counter/u_delta_counter/n57 ) );
sky130_fd_sc_hd__dfrtp_4 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_0_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [0]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [0]) );
sky130_fd_sc_hd__dfrtp_2 \u_tim_pscr_dffr/dat_o_reg_4_ ( .D(s_tim_pscr_d[4]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_pscr_q[4]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_cnt_dffr/dat_o_reg_3_ (
.D(\u_clk_int_even_div_simple/s_cnt_d [3]), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(\u_clk_int_even_div_simple/s_cnt_q [3]) );
sky130_fd_sc_hd__dfrtp_2 \u_tim_pscr_dffr/dat_o_reg_6_ ( .D(s_tim_pscr_d[6]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_pscr_q[6]) );
sky130_fd_sc_hd__dfrtp_2 \u_tim_pscr_dffr/dat_o_reg_1_ ( .D(n195), .CLK(
apb4_pclk), .RESET_B(apb4_presetn), .Q(n550) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_11_ ( .D(s_tim_cmp_d[11]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[11]) );
sky130_fd_sc_hd__dfrtp_1 \u_tim_cmp_dffr/dat_o_reg_26_ ( .D(s_tim_cmp_d[26]), .CLK(apb4_pclk), .RESET_B(apb4_presetn), .Q(s_tim_cmp_q[26]) );
sky130_fd_sc_hd__dfrtp_1 \u_clk_int_even_div_simple/u_clk_dffr/dat_o_reg_0_ (
.D(\u_clk_int_even_div_simple/s_clk_d ), .CLK(apb4_pclk), .RESET_B(
apb4_presetn), .Q(s_inclk) );
sky130_fd_sc_hd__clkbuf_1 U203 ( .A(n250), .X(n108) );
sky130_fd_sc_hd__inv_2 U204 ( .A(n183), .Y(n110) );
sky130_fd_sc_hd__xnor2_2 U205 ( .A(n285), .B(n284), .Y(n287) );
sky130_fd_sc_hd__xnor2_2 U206 ( .A(n294), .B(n293), .Y(n295) );
sky130_fd_sc_hd__xnor2_2 U207 ( .A(n297), .B(n296), .Y(n298) );
sky130_fd_sc_hd__xnor2_2 U208 ( .A(n301), .B(n300), .Y(n302) );
sky130_fd_sc_hd__xor2_2 U209 ( .A(n317), .B(n316), .X(n318) );
sky130_fd_sc_hd__xor2_2 U210 ( .A(n322), .B(n321), .X(n323) );
sky130_fd_sc_hd__xor2_2 U211 ( .A(n352), .B(n365), .X(n353) );
sky130_fd_sc_hd__xnor2_2 U212 ( .A(n361), .B(n360), .Y(n362) );
sky130_fd_sc_hd__xnor2_2 U213 ( .A(n368), .B(n367), .Y(n370) );
sky130_fd_sc_hd__nand2_4 U214 ( .A(n275), .B(n398), .Y(n409) );
sky130_fd_sc_hd__nand2_2 U215 ( .A(n269), .B(n124), .Y(n177) );
sky130_fd_sc_hd__inv_1 U216 ( .A(n509), .Y(n84) );
sky130_fd_sc_hd__nand2_1 U217 ( .A(n87), .B(n84), .Y(n260) );
sky130_fd_sc_hd__xnor2_2 U218 ( .A(n352), .B(n87), .Y(n254) );
sky130_fd_sc_hd__clkbuf_1 U219 ( .A(s_tim_pscr_q[11]), .X(n85) );
sky130_fd_sc_hd__a21oi_2 U220 ( .A1(n111), .A2(n87), .B1(n254), .Y(n242) );
sky130_fd_sc_hd__clkinv_1 U221 ( .A(s_tim_pscr_q[4]), .Y(n99) );
sky130_fd_sc_hd__clkinv_1 U222 ( .A(\u_clk_int_even_div_simple/s_cnt_q [16]),
.Y(n307) );
sky130_fd_sc_hd__xnor2_1 U223 ( .A(\u_clk_int_even_div_simple/s_cnt_q [5]),
.B(s_tim_pscr_q[6]), .Y(n86) );
sky130_fd_sc_hd__inv_2 U224 ( .A(n87), .Y(n506) );
sky130_fd_sc_hd__inv_2 U225 ( .A(s_tim_pscr_q[9]), .Y(n87) );
sky130_fd_sc_hd__inv_1 U226 ( .A(n260), .Y(n240) );
sky130_fd_sc_hd__clkinv_1 U227 ( .A(n274), .Y(n275) );
sky130_fd_sc_hd__inv_1 U228 ( .A(apb4_pwdata[2]), .Y(n546) );
sky130_fd_sc_hd__nand3_1 U229 ( .A(n129), .B(n240), .C(n128), .Y(n181) );
sky130_fd_sc_hd__clkinv_1 U230 ( .A(n108), .Y(n166) );
sky130_fd_sc_hd__clkinv_1 U231 ( .A(n359), .Y(n363) );
sky130_fd_sc_hd__inv_1 U232 ( .A(n124), .Y(n88) );
sky130_fd_sc_hd__inv_2 U233 ( .A(n212), .Y(n516) );
sky130_fd_sc_hd__inv_1 U234 ( .A(n220), .Y(n221) );
sky130_fd_sc_hd__inv_1 U235 ( .A(n268), .Y(n267) );
sky130_fd_sc_hd__clkinv_1 U236 ( .A(s_tim_pscr_q[17]), .Y(n226) );
sky130_fd_sc_hd__inv_1 U237 ( .A(apb4_pwdata[3]), .Y(n386) );
sky130_fd_sc_hd__nor2_1 U238 ( .A(n154), .B(n148), .Y(n339) );
sky130_fd_sc_hd__nand3_1 U239 ( .A(n179), .B(n182), .C(n180), .Y(n127) );
sky130_fd_sc_hd__xnor2_1 U240 ( .A(n282), .B(n281), .Y(n283) );
sky130_fd_sc_hd__xnor2_1 U241 ( .A(n350), .B(n349), .Y(n351) );
sky130_fd_sc_hd__clkinv_1 U242 ( .A(n545), .Y(n399) );
sky130_fd_sc_hd__nor2_1 U243 ( .A(n208), .B(n166), .Y(n165) );
sky130_fd_sc_hd__clkinv_1 U244 ( .A(n409), .Y(n413) );
sky130_fd_sc_hd__inv_1 U245 ( .A(n251), .Y(n150) );
sky130_fd_sc_hd__a21o_1 U246 ( .A1(n215), .A2(n212), .B1(n235), .X(n214) );
sky130_fd_sc_hd__clkinv_1 U247 ( .A(n549), .Y(n547) );
sky130_fd_sc_hd__and2_0 U248 ( .A(n341), .B(
\u_clk_int_even_div_simple/s_cnt_q [18]), .X(n292) );
sky130_fd_sc_hd__clkinv_1 U249 ( .A(n238), .Y(n237) );
sky130_fd_sc_hd__clkinv_1 U250 ( .A(n217), .Y(n213) );
sky130_fd_sc_hd__clkinv_1 U251 ( .A(n355), .Y(n319) );
sky130_fd_sc_hd__inv_1 U252 ( .A(n219), .Y(n222) );
sky130_fd_sc_hd__clkinv_1 U253 ( .A(n89), .Y(n90) );
sky130_fd_sc_hd__inv_1 U254 ( .A(n299), .Y(n309) );
sky130_fd_sc_hd__clkinv_1 U255 ( .A(n488), .Y(n397) );
sky130_fd_sc_hd__and2_0 U256 ( .A(n385), .B(
\u_clk_int_even_div_simple/s_cnt_q [2]), .X(n95) );
sky130_fd_sc_hd__clkinv_1 U257 ( .A(n364), .Y(n346) );
sky130_fd_sc_hd__inv_1 U258 ( .A(s_tim_pscr_q[13]), .Y(n212) );
sky130_fd_sc_hd__clkinv_1 U259 ( .A(s_tim_ctrl_q[2]), .Y(n548) );
sky130_fd_sc_hd__inv_2 U260 ( .A(s_tim_pscr_q[15]), .Y(n91) );
sky130_fd_sc_hd__clkinv_1 U261 ( .A(\u_clk_int_even_div_simple/s_cnt_q [18]),
.Y(n343) );
sky130_fd_sc_hd__inv_1 U262 ( .A(\u_clk_int_even_div_simple/s_cnt_q [7]),
.Y(n322) );
sky130_fd_sc_hd__clkinv_1 U263 ( .A(\u_clk_int_even_div_simple/s_cnt_q [5]),
.Y(n317) );
sky130_fd_sc_hd__clkinv_1 U264 ( .A(\u_clk_int_even_div_simple/s_cnt_q [12]),
.Y(n360) );
sky130_fd_sc_hd__inv_1 U265 ( .A(s_tim_pscr_q[19]), .Y(n218) );
sky130_fd_sc_hd__clkinv_1 U266 ( .A(\u_clk_int_even_div_simple/s_cnt_q [19]),
.Y(n293) );
sky130_fd_sc_hd__inv_1 U267 ( .A(\u_clk_int_even_div_simple/s_cnt_q [1]),
.Y(n305) );
sky130_fd_sc_hd__clkinv_1 U268 ( .A(\u_clk_int_even_div_simple/s_cnt_q [17]),
.Y(n296) );
sky130_fd_sc_hd__clkinv_1 U269 ( .A(\u_clk_int_even_div_simple/s_cnt_q [10]),
.Y(n325) );
sky130_fd_sc_hd__clkinv_1 U270 ( .A(\u_clk_int_even_div_simple/s_cnt_q [11]),
.Y(n327) );
sky130_fd_sc_hd__clkinv_1 U271 ( .A(\u_clk_int_even_div_simple/s_cnt_q [15]),
.Y(n349) );
sky130_fd_sc_hd__clkinv_1 U272 ( .A(\u_clk_int_even_div_simple/s_cnt_q [14]),
.Y(n367) );
sky130_fd_sc_hd__clkinv_1 U273 ( .A(
\u_clk_int_even_div_simple/s_div_done_q [2]), .Y(n412) );
sky130_fd_sc_hd__clkinv_1 U274 ( .A(\u_clk_int_even_div_simple/s_cnt_q [13]),
.Y(n281) );
sky130_fd_sc_hd__inv_1 U275 ( .A(\u_clk_int_even_div_simple/s_cnt_q [6]),
.Y(n357) );
sky130_fd_sc_hd__nand2_1 U276 ( .A(n140), .B(n265), .Y(n139) );
sky130_fd_sc_hd__nand2_1 U277 ( .A(n192), .B(n409), .Y(n118) );
sky130_fd_sc_hd__inv_1 U278 ( .A(\u_clk_int_even_div_simple/s_cnt_q [3]),
.Y(n89) );
sky130_fd_sc_hd__xor2_1 U279 ( .A(\u_clk_int_even_div_simple/s_cnt_q [5]),
.B(s_tim_pscr_q[6]), .X(n92) );
sky130_fd_sc_hd__inv_1 U280 ( .A(n99), .Y(n93) );
sky130_fd_sc_hd__inv_1 U281 ( .A(n174), .Y(n169) );
sky130_fd_sc_hd__clkinv_1 U282 ( .A(s_tim_pscr_q[16]), .Y(n102) );
sky130_fd_sc_hd__clkinv_1 U283 ( .A(s_tim_pscr_q[5]), .Y(n131) );
sky130_fd_sc_hd__inv_2 U284 ( .A(s_tim_pscr_q[12]), .Y(n207) );
sky130_fd_sc_hd__clkinv_1 U285 ( .A(s_tim_pscr_q[7]), .Y(n269) );
sky130_fd_sc_hd__nand2_1 U286 ( .A(n86), .B(n246), .Y(n252) );
sky130_fd_sc_hd__clkinv_1 U287 ( .A(n156), .Y(n155) );
sky130_fd_sc_hd__nand3_1 U288 ( .A(n272), .B(n262), .C(n264), .Y(n156) );
sky130_fd_sc_hd__inv_1 U289 ( .A(n340), .Y(n186) );
sky130_fd_sc_hd__clkinv_1 U290 ( .A(n291), .Y(n365) );
sky130_fd_sc_hd__and2_0 U291 ( .A(n409), .B(
\u_clk_int_even_div_simple/s_div_done_q [0]), .X(n98) );
sky130_fd_sc_hd__nand2_1 U292 ( .A(n266), .B(n250), .Y(n109) );
sky130_fd_sc_hd__clkinv_1 U293 ( .A(n188), .Y(n187) );
sky130_fd_sc_hd__clkinv_1 U294 ( .A(n135), .Y(n134) );
sky130_fd_sc_hd__nand2_1 U295 ( .A(n109), .B(n267), .Y(n272) );
sky130_fd_sc_hd__inv_1 U296 ( .A(n123), .Y(n129) );
sky130_fd_sc_hd__nand3_1 U297 ( .A(n214), .B(n126), .C(n108), .Y(n125) );
sky130_fd_sc_hd__clkinv_1 U298 ( .A(apb4_paddr[4]), .Y(n530) );
sky130_fd_sc_hd__nand3_1 U299 ( .A(n157), .B(n253), .C(n155), .Y(n154) );
sky130_fd_sc_hd__clkinv_1 U300 ( .A(apb4_paddr[3]), .Y(n541) );
sky130_fd_sc_hd__clkinv_1 U301 ( .A(\u_clk_int_even_div_simple/s_cnt_q [4]),
.Y(n315) );
sky130_fd_sc_hd__and2_0 U302 ( .A(n200), .B(n541), .X(n398) );
sky130_fd_sc_hd__inv_2 U303 ( .A(n398), .Y(n544) );
sky130_fd_sc_hd__and2_0 U304 ( .A(n531), .B(s_tim_cmp_q[20]), .X(
apb4_prdata[20]) );
sky130_fd_sc_hd__and2_0 U305 ( .A(n531), .B(s_tim_cmp_q[21]), .X(
apb4_prdata[21]) );
sky130_fd_sc_hd__and2_0 U306 ( .A(n531), .B(s_tim_cmp_q[22]), .X(
apb4_prdata[22]) );
sky130_fd_sc_hd__and2_0 U307 ( .A(n531), .B(s_tim_cmp_q[23]), .X(
apb4_prdata[23]) );
sky130_fd_sc_hd__and2_0 U308 ( .A(n531), .B(s_tim_cmp_q[24]), .X(
apb4_prdata[24]) );
sky130_fd_sc_hd__and2_0 U309 ( .A(n531), .B(s_tim_cmp_q[25]), .X(
apb4_prdata[25]) );
sky130_fd_sc_hd__and2_0 U310 ( .A(n531), .B(s_tim_cmp_q[26]), .X(
apb4_prdata[26]) );
sky130_fd_sc_hd__and2_0 U311 ( .A(n531), .B(s_tim_cmp_q[27]), .X(
apb4_prdata[27]) );
sky130_fd_sc_hd__and2_0 U312 ( .A(n531), .B(s_tim_cmp_q[28]), .X(
apb4_prdata[28]) );
sky130_fd_sc_hd__and2_0 U313 ( .A(n531), .B(s_tim_cmp_q[29]), .X(
apb4_prdata[29]) );
sky130_fd_sc_hd__and2_0 U314 ( .A(n531), .B(s_tim_cmp_q[30]), .X(
apb4_prdata[30]) );
sky130_fd_sc_hd__and2_0 U315 ( .A(n531), .B(s_tim_cmp_q[31]), .X(
apb4_prdata[31]) );
sky130_fd_sc_hd__clkinv_1 U316 ( .A(apb4_pwdata[14]), .Y(n374) );
sky130_fd_sc_hd__clkinv_1 U317 ( .A(apb4_pwdata[6]), .Y(n382) );
sky130_fd_sc_hd__nand3_1 U318 ( .A(n184), .B(n409), .C(
\u_clk_int_even_div_simple/s_div_done_q [1]), .Y(n408) );
sky130_fd_sc_hd__clkinv_1 U319 ( .A(apb4_pwdata[9]), .Y(n390) );
sky130_fd_sc_hd__nor2_1 U320 ( .A(
\u_clk_int_even_div_simple/s_div_done_q [0]), .B(n110), .Y(n190) );
sky130_fd_sc_hd__clkinv_1 U321 ( .A(apb4_pwdata[19]), .Y(n405) );
sky130_fd_sc_hd__clkinv_1 U322 ( .A(apb4_pwdata[18]), .Y(n401) );
sky130_fd_sc_hd__clkinv_1 U323 ( .A(apb4_pwdata[17]), .Y(n403) );
sky130_fd_sc_hd__clkinv_1 U324 ( .A(apb4_pwdata[15]), .Y(n372) );
sky130_fd_sc_hd__clkinv_1 U325 ( .A(apb4_pwdata[13]), .Y(n396) );
sky130_fd_sc_hd__clkinv_1 U326 ( .A(apb4_pwdata[12]), .Y(n392) );
sky130_fd_sc_hd__clkinv_1 U327 ( .A(apb4_pwdata[11]), .Y(n394) );
sky130_fd_sc_hd__clkinv_1 U328 ( .A(apb4_pwdata[10]), .Y(n388) );
sky130_fd_sc_hd__clkinv_1 U329 ( .A(apb4_pwdata[8]), .Y(n376) );
sky130_fd_sc_hd__clkinv_1 U330 ( .A(apb4_pwdata[7]), .Y(n378) );
sky130_fd_sc_hd__and3_1 U331 ( .A(n236), .B(n235), .C(n91), .X(n94) );
sky130_fd_sc_hd__o21a_1 U332 ( .A1(n516), .A2(n217), .B1(n216), .X(n96) );
sky130_fd_sc_hd__nand2_1 U333 ( .A(n215), .B(n213), .Y(n97) );
sky130_fd_sc_hd__nand2_1 U334 ( .A(n136), .B(n99), .Y(n135) );
sky130_fd_sc_hd__inv_1 U335 ( .A(s_tim_pscr_q[6]), .Y(n136) );
sky130_fd_sc_hd__inv_2 U336 ( .A(n103), .Y(n250) );
sky130_fd_sc_hd__nand2_1 U337 ( .A(n100), .B(n103), .Y(n140) );
sky130_fd_sc_hd__nand2_2 U338 ( .A(n132), .B(n550), .Y(n103) );
sky130_fd_sc_hd__nand2_1 U339 ( .A(n113), .B(n101), .Y(n100) );
sky130_fd_sc_hd__xnor2_1 U340 ( .A(s_tim_pscr_q[3]), .B(
\u_clk_int_even_div_simple/s_cnt_q [2]), .Y(n101) );
sky130_fd_sc_hd__xnor2_1 U341 ( .A(\u_clk_int_even_div_simple/s_cnt_q [3]),
.B(s_tim_pscr_q[4]), .Y(n113) );
sky130_fd_sc_hd__nand2_1 U342 ( .A(n91), .B(n102), .Y(n188) );
sky130_fd_sc_hd__nor2_1 U343 ( .A(n85), .B(n103), .Y(n128) );
sky130_fd_sc_hd__nand3_1 U344 ( .A(n105), .B(n94), .C(n237), .Y(n331) );
sky130_fd_sc_hd__nand2_1 U345 ( .A(n158), .B(n105), .Y(n157) );
sky130_fd_sc_hd__nand2_1 U346 ( .A(n104), .B(n238), .Y(n332) );
sky130_fd_sc_hd__nand2_1 U347 ( .A(n94), .B(n105), .Y(n104) );
sky130_fd_sc_hd__inv_1 U348 ( .A(n120), .Y(n105) );
sky130_fd_sc_hd__nand2_1 U349 ( .A(n107), .B(n106), .Y(n137) );
sky130_fd_sc_hd__nor2_1 U350 ( .A(s_tim_pscr_q[3]), .B(s_tim_pscr_q[6]), .Y(
n106) );
sky130_fd_sc_hd__nor2_1 U351 ( .A(s_tim_pscr_q[5]), .B(s_tim_pscr_q[4]), .Y(
n107) );
sky130_fd_sc_hd__inv_1 U352 ( .A(n109), .Y(n270) );
sky130_fd_sc_hd__nor2_1 U353 ( .A(n110), .B(n115), .Y(
\u_clk_int_even_div_simple/s_cnt_d [18]) );
sky130_fd_sc_hd__clkinv_1 U354 ( .A(s_tim_pscr_q[8]), .Y(n124) );
sky130_fd_sc_hd__nand3_1 U355 ( .A(n254), .B(n167), .C(n111), .Y(n173) );
sky130_fd_sc_hd__inv_1 U356 ( .A(n256), .Y(n111) );
sky130_fd_sc_hd__nor2_2 U357 ( .A(n161), .B(n112), .Y(n160) );
sky130_fd_sc_hd__nand2_1 U358 ( .A(n112), .B(n222), .Y(n224) );
sky130_fd_sc_hd__nand2_1 U359 ( .A(n169), .B(n168), .Y(n112) );
sky130_fd_sc_hd__xnor2_1 U360 ( .A(\u_clk_int_even_div_simple/s_cnt_q [3]),
.B(s_tim_pscr_q[4]), .Y(n122) );
sky130_fd_sc_hd__inv_1 U361 ( .A(n136), .Y(n114) );
sky130_fd_sc_hd__inv_2 U362 ( .A(\u_clk_int_even_div_simple/s_cnt_q [8]),
.Y(n352) );
sky130_fd_sc_hd__or2_0 U363 ( .A(n345), .B(n413), .X(n115) );
sky130_fd_sc_hd__nand2_1 U364 ( .A(n183), .B(n409), .Y(n116) );
sky130_fd_sc_hd__nand2_2 U365 ( .A(n183), .B(n409), .Y(n369) );
sky130_fd_sc_hd__nand2_1 U366 ( .A(n169), .B(n168), .Y(n231) );
sky130_fd_sc_hd__nand2_4 U367 ( .A(n192), .B(n409), .Y(n117) );
sky130_fd_sc_hd__nand2_2 U368 ( .A(n192), .B(n409), .Y(n329) );
sky130_fd_sc_hd__nand2_4 U369 ( .A(n191), .B(n185), .Y(n192) );
sky130_fd_sc_hd__buf_2 U370 ( .A(s_tim_pscr_q[10]), .X(n509) );
sky130_fd_sc_hd__nor3_2 U371 ( .A(n541), .B(n539), .C(n485), .Y(n531) );
sky130_fd_sc_hd__clkbuf_1 U372 ( .A(s_tim_pscr_q[7]), .X(n119) );
sky130_fd_sc_hd__nand2_1 U373 ( .A(n173), .B(n120), .Y(n146) );
sky130_fd_sc_hd__nand3_1 U374 ( .A(n266), .B(n176), .C(n250), .Y(n120) );
sky130_fd_sc_hd__nand3_1 U375 ( .A(n122), .B(n310), .C(n491), .Y(n245) );
sky130_fd_sc_hd__nand2_1 U376 ( .A(n95), .B(n121), .Y(n244) );
sky130_fd_sc_hd__inv_1 U377 ( .A(n113), .Y(n121) );
sky130_fd_sc_hd__nor2_2 U378 ( .A(n138), .B(n123), .Y(n126) );
sky130_fd_sc_hd__nand2_1 U379 ( .A(n266), .B(n176), .Y(n123) );
sky130_fd_sc_hd__nand2_1 U380 ( .A(n126), .B(n250), .Y(n163) );
sky130_fd_sc_hd__nand3_1 U381 ( .A(n165), .B(n96), .C(n126), .Y(n164) );
sky130_fd_sc_hd__nand2_1 U382 ( .A(n125), .B(n97), .Y(n182) );
sky130_fd_sc_hd__inv_2 U383 ( .A(n127), .Y(n185) );
sky130_fd_sc_hd__inv_2 U384 ( .A(n177), .Y(n176) );
sky130_fd_sc_hd__clkinv_1 U385 ( .A(n137), .Y(n266) );
sky130_fd_sc_hd__inv_1 U386 ( .A(n130), .Y(n133) );
sky130_fd_sc_hd__nand3_1 U387 ( .A(n132), .B(n131), .C(n550), .Y(n130) );
sky130_fd_sc_hd__clkinv_1 U388 ( .A(s_tim_pscr_q[2]), .Y(n132) );
sky130_fd_sc_hd__nand4_1 U389 ( .A(n134), .B(n385), .C(n133), .D(n235), .Y(
n174) );
sky130_fd_sc_hd__nor2_1 U390 ( .A(n93), .B(s_tim_pscr_q[3]), .Y(n249) );
sky130_fd_sc_hd__nor2_1 U391 ( .A(s_tim_pscr_q[5]), .B(s_tim_pscr_q[6]), .Y(
n247) );
sky130_fd_sc_hd__inv_2 U392 ( .A(n550), .Y(n484) );
sky130_fd_sc_hd__inv_1 U393 ( .A(n145), .Y(n144) );
sky130_fd_sc_hd__inv_1 U394 ( .A(n143), .Y(n142) );
sky130_fd_sc_hd__inv_1 U395 ( .A(n247), .Y(n172) );
sky130_fd_sc_hd__nand4_1 U396 ( .A(n257), .B(n258), .C(n259), .D(n171), .Y(
n170) );
sky130_fd_sc_hd__buf_2 U397 ( .A(n234), .X(n138) );
sky130_fd_sc_hd__nand3_1 U398 ( .A(n153), .B(n149), .C(n263), .Y(n143) );
sky130_fd_sc_hd__nand3_1 U399 ( .A(n244), .B(n250), .C(n245), .Y(n153) );
sky130_fd_sc_hd__nor2_1 U400 ( .A(n139), .B(n170), .Y(n141) );
sky130_fd_sc_hd__nand4_1 U401 ( .A(n144), .B(n141), .C(n142), .D(n147), .Y(
n148) );
sky130_fd_sc_hd__nand2_1 U402 ( .A(n146), .B(n271), .Y(n145) );
sky130_fd_sc_hd__nand2_1 U403 ( .A(n151), .B(n150), .Y(n147) );
sky130_fd_sc_hd__xnor2_1 U404 ( .A(n484), .B(n243), .Y(n149) );
sky130_fd_sc_hd__nand2_1 U405 ( .A(n252), .B(n152), .Y(n151) );
sky130_fd_sc_hd__nand2_1 U406 ( .A(n248), .B(n247), .Y(n152) );
sky130_fd_sc_hd__nand2_1 U407 ( .A(n242), .B(n241), .Y(n158) );
sky130_fd_sc_hd__nand2_1 U408 ( .A(n159), .B(n228), .Y(n233) );
sky130_fd_sc_hd__clkinv_1 U409 ( .A(n231), .Y(n159) );
sky130_fd_sc_hd__inv_2 U410 ( .A(n160), .Y(n225) );
sky130_fd_sc_hd__o21ai_1 U411 ( .A1(n218), .A2(n219), .B1(n220), .Y(n161) );
sky130_fd_sc_hd__nor2_2 U412 ( .A(s_tim_pscr_q[9]), .B(s_tim_pscr_q[10]),
.Y(n209) );
sky130_fd_sc_hd__nand2_1 U413 ( .A(n164), .B(n162), .Y(n179) );
sky130_fd_sc_hd__nand2_1 U414 ( .A(n163), .B(n208), .Y(n162) );
sky130_fd_sc_hd__nand2_1 U415 ( .A(n240), .B(n167), .Y(n241) );
sky130_fd_sc_hd__inv_2 U416 ( .A(n261), .Y(n167) );
sky130_fd_sc_hd__xor2_1 U417 ( .A(s_tim_pscr_q[11]), .B(
\u_clk_int_even_div_simple/s_cnt_q [10]), .X(n261) );
sky130_fd_sc_hd__nor2_2 U418 ( .A(n234), .B(n175), .Y(n168) );
sky130_fd_sc_hd__nand2_1 U419 ( .A(n172), .B(n255), .Y(n171) );
sky130_fd_sc_hd__nand2_1 U420 ( .A(n114), .B(n544), .Y(n381) );
sky130_fd_sc_hd__nand2_1 U421 ( .A(n114), .B(n533), .Y(n500) );
sky130_fd_sc_hd__nand2_1 U422 ( .A(n176), .B(n187), .Y(n175) );
sky130_fd_sc_hd__nand3_1 U423 ( .A(n333), .B(n332), .C(n331), .Y(n239) );
sky130_fd_sc_hd__nand2_1 U424 ( .A(n233), .B(n232), .Y(n333) );
sky130_fd_sc_hd__xnor2_1 U425 ( .A(s_inclk), .B(n192), .Y(
\u_clk_int_even_div_simple/s_clk_d ) );
sky130_fd_sc_hd__nor2_1 U426 ( .A(n189), .B(n190), .Y(
\u_clk_int_even_div_simple/s_div_done_d [0]) );
sky130_fd_sc_hd__nand2_2 U427 ( .A(n178), .B(n185), .Y(n183) );
sky130_fd_sc_hd__nand3_1 U428 ( .A(n178), .B(n185), .C(n98), .Y(n410) );
sky130_fd_sc_hd__inv_1 U429 ( .A(n286), .Y(n178) );
sky130_fd_sc_hd__xnor2_1 U430 ( .A(n211), .B(n181), .Y(n180) );
sky130_fd_sc_hd__nand2_1 U431 ( .A(n184), .B(n409), .Y(n189) );
sky130_fd_sc_hd__nand2_1 U432 ( .A(n186), .B(n185), .Y(n184) );
sky130_fd_sc_hd__nand3_2 U433 ( .A(n209), .B(n207), .C(n210), .Y(n234) );
sky130_fd_sc_hd__clkinv_1 U434 ( .A(n286), .Y(n191) );
sky130_fd_sc_hd__nand3_1 U435 ( .A(n227), .B(
\u_clk_int_even_div_simple/s_cnt_q [16]), .C(n226), .Y(n193) );
sky130_fd_sc_hd__nand3_1 U436 ( .A(n230), .B(s_tim_pscr_q[17]), .C(n307),
.Y(n194) );
sky130_fd_sc_hd__o22ai_1 U437 ( .A1(apb4_pwdata[1]), .A2(n399), .B1(n398),
.B2(n484), .Y(n195) );
sky130_fd_sc_hd__clkinv_1 U438 ( .A(n542), .Y(n543) );
sky130_fd_sc_hd__clkinv_1 U439 ( .A(
\u_clk_int_even_div_simple/s_div_done_q [0]), .Y(n335) );
sky130_fd_sc_hd__clkinv_1 U440 ( .A(s_norm_trg2), .Y(n204) );
sky130_fd_sc_hd__clkinv_1 U441 ( .A(n324), .Y(n312) );
sky130_fd_sc_hd__clkinv_1 U442 ( .A(apb4_pwdata[5]), .Y(n380) );
sky130_fd_sc_hd__clkinv_1 U443 ( .A(timer_irq_o), .Y(n537) );
sky130_fd_sc_hd__clkinv_1 U444 ( .A(
\u_clk_int_even_div_simple/s_div_done_q [1]), .Y(n411) );
sky130_fd_sc_hd__clkinv_1 U445 ( .A(apb4_pwdata[16]), .Y(n407) );
sky130_fd_sc_hd__clkinv_1 U446 ( .A(apb4_pwdata[4]), .Y(n384) );
sky130_fd_sc_hd__conb_1 U447 ( .LO(apb4_pslverr), .HI(apb4_pready) );
sky130_fd_sc_hd__nor4_1 U448 ( .A(apb4_pwdata[16]), .B(apb4_pwdata[15]), .C(
apb4_pwdata[14]), .D(apb4_pwdata[13]), .Y(n203) );
sky130_fd_sc_hd__nor4_1 U449 ( .A(apb4_pwdata[8]), .B(apb4_pwdata[7]), .C(
apb4_pwdata[6]), .D(apb4_pwdata[5]), .Y(n198) );
sky130_fd_sc_hd__nor4_1 U450 ( .A(apb4_pwdata[1]), .B(apb4_pwdata[19]), .C(
apb4_pwdata[18]), .D(apb4_pwdata[17]), .Y(n197) );
sky130_fd_sc_hd__nor3_1 U451 ( .A(apb4_pwdata[4]), .B(apb4_pwdata[3]), .C(
apb4_pwdata[2]), .Y(n196) );
sky130_fd_sc_hd__and3_1 U452 ( .A(n198), .B(n197), .C(n196), .X(n202) );
sky130_fd_sc_hd__nor4_1 U453 ( .A(apb4_pwdata[12]), .B(apb4_pwdata[11]), .C(
apb4_pwdata[10]), .D(apb4_pwdata[9]), .Y(n201) );
sky130_fd_sc_hd__nand2_1 U454 ( .A(apb4_penable), .B(apb4_psel), .Y(n199) );
sky130_fd_sc_hd__nor2_1 U455 ( .A(apb4_paddr[5]), .B(n199), .Y(n206) );
sky130_fd_sc_hd__nand2_1 U456 ( .A(n206), .B(apb4_pwrite), .Y(n540) );
sky130_fd_sc_hd__nand2_1 U457 ( .A(apb4_paddr[2]), .B(n530), .Y(n539) );
sky130_fd_sc_hd__nor2_1 U458 ( .A(n540), .B(n539), .Y(n200) );
sky130_fd_sc_hd__a31oi_1 U459 ( .A1(n203), .A2(n202), .A3(n201), .B1(n544),
.Y(n545) );
sky130_fd_sc_hd__nand3_1 U460 ( .A(
\u_clk_int_even_div_simple/s_div_done_q [1]), .B(
\u_clk_int_even_div_simple/s_div_done_q [0]), .C(
\u_clk_int_even_div_simple/s_div_done_q [2]), .Y(n274) );
sky130_fd_sc_hd__nor2_1 U461 ( .A(n274), .B(n548), .Y(s_normal_mode) );
sky130_fd_sc_hd__a21oi_1 U462 ( .A1(s_norm_trg1), .A2(n204), .B1(s_cnt_ov),
.Y(n414) );
sky130_fd_sc_hd__and2_0 U463 ( .A(s_normal_mode), .B(n414), .X(n479) );
sky130_fd_sc_hd__xor2_1 U464 ( .A(s_tim_ctrl_q[3]), .B(
\DP_OP_32J1_123_8669/n2 ), .X(n205) );
sky130_fd_sc_hd__and2_0 U465 ( .A(n479), .B(n205), .X(
\u_tim_cnt_counter/u_delta_counter/s_cnt_d[32] ) );
sky130_fd_sc_hd__nand2b_1 U466 ( .A_N(apb4_pwrite), .B(n206), .Y(n485) );
sky130_fd_sc_hd__nand2b_1 U467 ( .A_N(n485), .B(n541), .Y(n529) );
sky130_fd_sc_hd__nor2_1 U468 ( .A(n539), .B(n529), .Y(n533) );
sky130_fd_sc_hd__a22o_1 U469 ( .A1(n533), .A2(s_tim_pscr_q[19]), .B1(n531),
.B2(s_tim_cmp_q[19]), .X(apb4_prdata[19]) );
sky130_fd_sc_hd__xnor2_1 U470 ( .A(\u_clk_int_even_div_simple/s_cnt_q [12]),
.B(n516), .Y(n208) );
sky130_fd_sc_hd__inv_1 U471 ( .A(s_tim_pscr_q[11]), .Y(n210) );
sky130_fd_sc_hd__xnor2_1 U472 ( .A(\u_clk_int_even_div_simple/s_cnt_q [11]),
.B(s_tim_pscr_q[12]), .Y(n211) );
sky130_fd_sc_hd__xnor2_1 U473 ( .A(s_tim_pscr_q[15]), .B(
\u_clk_int_even_div_simple/s_cnt_q [14]), .Y(n215) );
sky130_fd_sc_hd__nor2_4 U474 ( .A(s_tim_pscr_q[13]), .B(s_tim_pscr_q[14]),
.Y(n235) );
sky130_fd_sc_hd__xor2_1 U475 ( .A(s_tim_pscr_q[14]), .B(
\u_clk_int_even_div_simple/s_cnt_q [13]), .X(n217) );
sky130_fd_sc_hd__nand2_1 U476 ( .A(n215), .B(n235), .Y(n216) );
sky130_fd_sc_hd__xnor2_1 U477 ( .A(s_tim_pscr_q[19]), .B(
\u_clk_int_even_div_simple/s_cnt_q [18]), .Y(n219) );
sky130_fd_sc_hd__nor2_1 U478 ( .A(s_tim_pscr_q[17]), .B(s_tim_pscr_q[18]),
.Y(n220) );
sky130_fd_sc_hd__a21oi_1 U479 ( .A1(n222), .A2(n221), .B1(
\u_clk_int_even_div_simple/s_cnt_q [19]), .Y(n223) );
sky130_fd_sc_hd__nand3_2 U480 ( .A(n225), .B(n224), .C(n223), .Y(n334) );
sky130_fd_sc_hd__xnor2_1 U481 ( .A(s_tim_pscr_q[18]), .B(
\u_clk_int_even_div_simple/s_cnt_q [17]), .Y(n230) );
sky130_fd_sc_hd__inv_1 U482 ( .A(n230), .Y(n227) );
sky130_fd_sc_hd__nand2_1 U483 ( .A(n193), .B(n194), .Y(n228) );
sky130_fd_sc_hd__xnor2_1 U484 ( .A(\u_clk_int_even_div_simple/s_cnt_q [16]),
.B(s_tim_pscr_q[17]), .Y(n229) );
sky130_fd_sc_hd__nand3_1 U485 ( .A(n231), .B(n230), .C(n229), .Y(n232) );
sky130_fd_sc_hd__inv_1 U486 ( .A(n234), .Y(n236) );
sky130_fd_sc_hd__xor2_1 U487 ( .A(s_tim_pscr_q[16]), .B(
\u_clk_int_even_div_simple/s_cnt_q [15]), .X(n238) );
sky130_fd_sc_hd__nor2_1 U488 ( .A(n334), .B(n239), .Y(n273) );
sky130_fd_sc_hd__xor2_1 U489 ( .A(\u_clk_int_even_div_simple/s_cnt_q [9]),
.B(s_tim_pscr_q[10]), .X(n256) );
sky130_fd_sc_hd__xnor2_1 U490 ( .A(s_tim_pscr_q[2]), .B(
\u_clk_int_even_div_simple/s_cnt_q [1]), .Y(n243) );
sky130_fd_sc_hd__buf_2 U491 ( .A(s_tim_pscr_q[3]), .X(n491) );
sky130_fd_sc_hd__inv_1 U492 ( .A(\u_clk_int_even_div_simple/s_cnt_q [2]),
.Y(n310) );
sky130_fd_sc_hd__inv_1 U493 ( .A(s_tim_pscr_q[3]), .Y(n385) );
sky130_fd_sc_hd__buf_2 U494 ( .A(s_tim_pscr_q[5]), .X(n497) );
sky130_fd_sc_hd__nand2_1 U495 ( .A(n315), .B(n497), .Y(n246) );
sky130_fd_sc_hd__xor2_1 U496 ( .A(s_tim_pscr_q[7]), .B(
\u_clk_int_even_div_simple/s_cnt_q [6]), .X(n255) );
sky130_fd_sc_hd__inv_1 U497 ( .A(n255), .Y(n248) );
sky130_fd_sc_hd__nand2_1 U498 ( .A(n250), .B(n249), .Y(n251) );
sky130_fd_sc_hd__o21ai_1 U499 ( .A1(n255), .A2(n252), .B1(n251), .Y(n253) );
sky130_fd_sc_hd__xor2_1 U500 ( .A(\u_clk_int_even_div_simple/s_cnt_q [0]),
.B(n484), .X(n259) );
sky130_fd_sc_hd__nand2_1 U501 ( .A(n256), .B(n506), .Y(n258) );
sky130_fd_sc_hd__nand2_1 U502 ( .A(n92), .B(n315), .Y(n257) );
sky130_fd_sc_hd__nand3_1 U503 ( .A(n86), .B(
\u_clk_int_even_div_simple/s_cnt_q [4]), .C(n131), .Y(n265) );
sky130_fd_sc_hd__nand2_1 U504 ( .A(n261), .B(n260), .Y(n264) );
sky130_fd_sc_hd__xnor2_1 U505 ( .A(s_tim_pscr_q[8]), .B(
\u_clk_int_even_div_simple/s_cnt_q [7]), .Y(n268) );
sky130_fd_sc_hd__nand2_1 U506 ( .A(n267), .B(n119), .Y(n263) );
sky130_fd_sc_hd__nand2_1 U507 ( .A(n92), .B(n497), .Y(n262) );
sky130_fd_sc_hd__nand3_1 U508 ( .A(n270), .B(n268), .C(n269), .Y(n271) );
sky130_fd_sc_hd__nand2_1 U509 ( .A(n273), .B(n339), .Y(n286) );
sky130_fd_sc_hd__nor2_1 U510 ( .A(\u_clk_int_even_div_simple/s_cnt_q [0]),
.B(n117), .Y(\u_clk_int_even_div_simple/s_cnt_d [0]) );
sky130_fd_sc_hd__nand2_1 U511 ( .A(\u_clk_int_even_div_simple/s_cnt_q [10]),
.B(\u_clk_int_even_div_simple/s_cnt_q [11]), .Y(n276) );
sky130_fd_sc_hd__nand2_1 U512 ( .A(\u_clk_int_even_div_simple/s_cnt_q [8]),
.B(\u_clk_int_even_div_simple/s_cnt_q [9]), .Y(n324) );
sky130_fd_sc_hd__nor2_1 U513 ( .A(n276), .B(n324), .Y(n359) );
sky130_fd_sc_hd__nor2_1 U514 ( .A(n360), .B(n363), .Y(n280) );
sky130_fd_sc_hd__nand2_1 U515 ( .A(\u_clk_int_even_div_simple/s_cnt_q [6]),
.B(\u_clk_int_even_div_simple/s_cnt_q [7]), .Y(n277) );
sky130_fd_sc_hd__nand2_1 U516 ( .A(\u_clk_int_even_div_simple/s_cnt_q [4]),
.B(\u_clk_int_even_div_simple/s_cnt_q [5]), .Y(n355) );
sky130_fd_sc_hd__nor2_1 U517 ( .A(n277), .B(n355), .Y(n279) );
sky130_fd_sc_hd__nand2_1 U518 ( .A(\u_clk_int_even_div_simple/s_cnt_q [0]),
.B(\u_clk_int_even_div_simple/s_cnt_q [1]), .Y(n299) );
sky130_fd_sc_hd__nand2_1 U519 ( .A(\u_clk_int_even_div_simple/s_cnt_q [2]),
.B(n90), .Y(n278) );
sky130_fd_sc_hd__nor2_1 U520 ( .A(n299), .B(n278), .Y(n303) );
sky130_fd_sc_hd__nand2_1 U521 ( .A(n279), .B(n303), .Y(n291) );
sky130_fd_sc_hd__nand2_1 U522 ( .A(n280), .B(n365), .Y(n282) );
sky130_fd_sc_hd__nor2_1 U523 ( .A(n283), .B(n118), .Y(
\u_clk_int_even_div_simple/s_cnt_d [13]) );
sky130_fd_sc_hd__nand2_1 U524 ( .A(n365), .B(
\u_clk_int_even_div_simple/s_cnt_q [8]), .Y(n285) );
sky130_fd_sc_hd__inv_1 U525 ( .A(\u_clk_int_even_div_simple/s_cnt_q [9]),
.Y(n284) );
sky130_fd_sc_hd__nor2_1 U526 ( .A(n287), .B(n369), .Y(
\u_clk_int_even_div_simple/s_cnt_d [9]) );
sky130_fd_sc_hd__nand2_1 U527 ( .A(\u_clk_int_even_div_simple/s_cnt_q [12]),
.B(\u_clk_int_even_div_simple/s_cnt_q [13]), .Y(n364) );
sky130_fd_sc_hd__nand2_1 U528 ( .A(\u_clk_int_even_div_simple/s_cnt_q [14]),
.B(\u_clk_int_even_div_simple/s_cnt_q [15]), .Y(n288) );
sky130_fd_sc_hd__nor2_1 U529 ( .A(n364), .B(n288), .Y(n289) );
sky130_fd_sc_hd__nand2_1 U530 ( .A(n359), .B(n289), .Y(n290) );
sky130_fd_sc_hd__nor2_1 U531 ( .A(n291), .B(n290), .Y(n342) );
sky130_fd_sc_hd__nor2_1 U532 ( .A(n296), .B(n307), .Y(n341) );
sky130_fd_sc_hd__nand2_1 U533 ( .A(n342), .B(n292), .Y(n294) );
sky130_fd_sc_hd__nor2_1 U534 ( .A(n295), .B(n369), .Y(
\u_clk_int_even_div_simple/s_cnt_d [19]) );
sky130_fd_sc_hd__nand2_1 U535 ( .A(n342), .B(
\u_clk_int_even_div_simple/s_cnt_q [16]), .Y(n297) );
sky130_fd_sc_hd__nor2_1 U536 ( .A(n298), .B(n117), .Y(
\u_clk_int_even_div_simple/s_cnt_d [17]) );
sky130_fd_sc_hd__nand2_1 U537 ( .A(n309), .B(
\u_clk_int_even_div_simple/s_cnt_q [2]), .Y(n301) );
sky130_fd_sc_hd__inv_1 U538 ( .A(n90), .Y(n300) );
sky130_fd_sc_hd__nor2_1 U539 ( .A(n302), .B(n369), .Y(
\u_clk_int_even_div_simple/s_cnt_d [3]) );
sky130_fd_sc_hd__inv_1 U540 ( .A(n303), .Y(n354) );
sky130_fd_sc_hd__xnor2_1 U541 ( .A(n354), .B(n315), .Y(n304) );
sky130_fd_sc_hd__nor2_1 U542 ( .A(n304), .B(n329), .Y(
\u_clk_int_even_div_simple/s_cnt_d [4]) );
sky130_fd_sc_hd__xor2_1 U543 ( .A(\u_clk_int_even_div_simple/s_cnt_q [0]),
.B(n305), .X(n306) );
sky130_fd_sc_hd__nor2_1 U544 ( .A(n306), .B(n116), .Y(
\u_clk_int_even_div_simple/s_cnt_d [1]) );
sky130_fd_sc_hd__xor2_1 U545 ( .A(n307), .B(n342), .X(n308) );
sky130_fd_sc_hd__nor2_1 U546 ( .A(n308), .B(n117), .Y(
\u_clk_int_even_div_simple/s_cnt_d [16]) );
sky130_fd_sc_hd__xor2_1 U547 ( .A(n310), .B(n309), .X(n311) );
sky130_fd_sc_hd__nor2_1 U548 ( .A(n311), .B(n329), .Y(
\u_clk_int_even_div_simple/s_cnt_d [2]) );
sky130_fd_sc_hd__nand2_1 U549 ( .A(n365), .B(n312), .Y(n313) );
sky130_fd_sc_hd__xnor2_1 U550 ( .A(n313), .B(n325), .Y(n314) );
sky130_fd_sc_hd__nor2_1 U551 ( .A(n314), .B(n329), .Y(
\u_clk_int_even_div_simple/s_cnt_d [10]) );
sky130_fd_sc_hd__nor2_1 U552 ( .A(n315), .B(n354), .Y(n316) );
sky130_fd_sc_hd__nor2_1 U553 ( .A(n318), .B(n117), .Y(
\u_clk_int_even_div_simple/s_cnt_d [5]) );
sky130_fd_sc_hd__nand2_1 U554 ( .A(n319), .B(
\u_clk_int_even_div_simple/s_cnt_q [6]), .Y(n320) );
sky130_fd_sc_hd__nor2_1 U555 ( .A(n320), .B(n354), .Y(n321) );
sky130_fd_sc_hd__nor2_1 U556 ( .A(n323), .B(n117), .Y(
\u_clk_int_even_div_simple/s_cnt_d [7]) );
sky130_fd_sc_hd__nor2_1 U557 ( .A(n325), .B(n324), .Y(n326) );
sky130_fd_sc_hd__nand2_1 U558 ( .A(n365), .B(n326), .Y(n328) );
sky130_fd_sc_hd__xnor2_1 U559 ( .A(n328), .B(n327), .Y(n330) );
sky130_fd_sc_hd__nor2_1 U560 ( .A(n330), .B(n329), .Y(
\u_clk_int_even_div_simple/s_cnt_d [11]) );
sky130_fd_sc_hd__and3_2 U561 ( .A(n333), .B(n332), .C(n331), .X(n338) );
sky130_fd_sc_hd__inv_1 U562 ( .A(n334), .Y(n337) );
sky130_fd_sc_hd__a21oi_1 U563 ( .A1(
\u_clk_int_even_div_simple/s_div_done_q [1]), .A2(
\u_clk_int_even_div_simple/s_div_done_q [2]), .B1(n335), .Y(n336) );
sky130_fd_sc_hd__nand4_1 U564 ( .A(n339), .B(n338), .C(n337), .D(n336), .Y(
n340) );
sky130_fd_sc_hd__nand2_1 U565 ( .A(n342), .B(n341), .Y(n344) );
sky130_fd_sc_hd__xnor2_1 U566 ( .A(n344), .B(n343), .Y(n345) );
sky130_fd_sc_hd__nand2_1 U567 ( .A(n346), .B(
\u_clk_int_even_div_simple/s_cnt_q [14]), .Y(n347) );
sky130_fd_sc_hd__nor2_1 U568 ( .A(n347), .B(n363), .Y(n348) );
sky130_fd_sc_hd__nand2_1 U569 ( .A(n348), .B(n365), .Y(n350) );
sky130_fd_sc_hd__nor2_1 U570 ( .A(n351), .B(n118), .Y(
\u_clk_int_even_div_simple/s_cnt_d [15]) );
sky130_fd_sc_hd__nor2_1 U571 ( .A(n353), .B(n117), .Y(
\u_clk_int_even_div_simple/s_cnt_d [8]) );
sky130_fd_sc_hd__nor2_1 U572 ( .A(n355), .B(n354), .Y(n356) );
sky130_fd_sc_hd__xor2_1 U573 ( .A(n357), .B(n356), .X(n358) );
sky130_fd_sc_hd__nor2_1 U574 ( .A(n358), .B(n116), .Y(
\u_clk_int_even_div_simple/s_cnt_d [6]) );
sky130_fd_sc_hd__nand2_1 U575 ( .A(n365), .B(n359), .Y(n361) );
sky130_fd_sc_hd__nor2_1 U576 ( .A(n362), .B(n117), .Y(
\u_clk_int_even_div_simple/s_cnt_d [12]) );
sky130_fd_sc_hd__nor2_1 U577 ( .A(n364), .B(n363), .Y(n366) );
sky130_fd_sc_hd__nand2_1 U578 ( .A(n366), .B(n365), .Y(n368) );
sky130_fd_sc_hd__nor2_1 U579 ( .A(n370), .B(n369), .Y(
\u_clk_int_even_div_simple/s_cnt_d [14]) );
sky130_fd_sc_hd__nand2_1 U580 ( .A(s_tim_pscr_q[15]), .B(n544), .Y(n371) );
sky130_fd_sc_hd__o21ai_1 U581 ( .A1(n544), .A2(n372), .B1(n371), .Y(
s_tim_pscr_d[15]) );
sky130_fd_sc_hd__nand2_1 U582 ( .A(s_tim_pscr_q[14]), .B(n544), .Y(n373) );
sky130_fd_sc_hd__o21ai_1 U583 ( .A1(n544), .A2(n374), .B1(n373), .Y(
s_tim_pscr_d[14]) );
sky130_fd_sc_hd__nand2_1 U584 ( .A(n88), .B(n544), .Y(n375) );
sky130_fd_sc_hd__o21ai_1 U585 ( .A1(n544), .A2(n376), .B1(n375), .Y(
s_tim_pscr_d[8]) );
sky130_fd_sc_hd__nand2_1 U586 ( .A(n119), .B(n544), .Y(n377) );
sky130_fd_sc_hd__o21ai_1 U587 ( .A1(n544), .A2(n378), .B1(n377), .Y(
s_tim_pscr_d[7]) );
sky130_fd_sc_hd__nand2_1 U588 ( .A(n497), .B(n544), .Y(n379) );
sky130_fd_sc_hd__o21ai_1 U589 ( .A1(n544), .A2(n380), .B1(n379), .Y(
s_tim_pscr_d[5]) );
sky130_fd_sc_hd__o21ai_1 U590 ( .A1(n544), .A2(n382), .B1(n381), .Y(
s_tim_pscr_d[6]) );
sky130_fd_sc_hd__nand2_1 U591 ( .A(n93), .B(n544), .Y(n383) );
sky130_fd_sc_hd__o21ai_1 U592 ( .A1(n544), .A2(n384), .B1(n383), .Y(
s_tim_pscr_d[4]) );
sky130_fd_sc_hd__o22ai_1 U593 ( .A1(n386), .A2(n399), .B1(n398), .B2(n385),
.Y(s_tim_pscr_d[3]) );
sky130_fd_sc_hd__nand2_1 U594 ( .A(n509), .B(n544), .Y(n387) );
sky130_fd_sc_hd__o21ai_1 U595 ( .A1(n544), .A2(n388), .B1(n387), .Y(
s_tim_pscr_d[10]) );
sky130_fd_sc_hd__nand2_1 U596 ( .A(n506), .B(n544), .Y(n389) );
sky130_fd_sc_hd__o21ai_1 U597 ( .A1(n544), .A2(n390), .B1(n389), .Y(
s_tim_pscr_d[9]) );
sky130_fd_sc_hd__nand2_1 U598 ( .A(s_tim_pscr_q[12]), .B(n544), .Y(n391) );
sky130_fd_sc_hd__o21ai_1 U599 ( .A1(n544), .A2(n392), .B1(n391), .Y(
s_tim_pscr_d[12]) );
sky130_fd_sc_hd__nand2_1 U600 ( .A(n85), .B(n544), .Y(n393) );
sky130_fd_sc_hd__o21ai_1 U601 ( .A1(n544), .A2(n394), .B1(n393), .Y(
s_tim_pscr_d[11]) );
sky130_fd_sc_hd__nand2_1 U602 ( .A(n516), .B(n544), .Y(n395) );
sky130_fd_sc_hd__o21ai_1 U603 ( .A1(n544), .A2(n396), .B1(n395), .Y(
s_tim_pscr_d[13]) );
sky130_fd_sc_hd__buf_2 U604 ( .A(s_tim_pscr_q[2]), .X(n488) );
sky130_fd_sc_hd__o22ai_1 U605 ( .A1(n546), .A2(n399), .B1(n398), .B2(n397),
.Y(s_tim_pscr_d[2]) );
sky130_fd_sc_hd__nand2_1 U606 ( .A(s_tim_pscr_q[18]), .B(n544), .Y(n400) );
sky130_fd_sc_hd__o21ai_1 U607 ( .A1(n544), .A2(n401), .B1(n400), .Y(
s_tim_pscr_d[18]) );
sky130_fd_sc_hd__nand2_1 U608 ( .A(s_tim_pscr_q[17]), .B(n544), .Y(n402) );
sky130_fd_sc_hd__o21ai_1 U609 ( .A1(n544), .A2(n403), .B1(n402), .Y(
s_tim_pscr_d[17]) );
sky130_fd_sc_hd__nand2_1 U610 ( .A(s_tim_pscr_q[19]), .B(n544), .Y(n404) );
sky130_fd_sc_hd__o21ai_1 U611 ( .A1(n544), .A2(n405), .B1(n404), .Y(
s_tim_pscr_d[19]) );
sky130_fd_sc_hd__nand2_1 U612 ( .A(s_tim_pscr_q[16]), .B(n544), .Y(n406) );
sky130_fd_sc_hd__o21ai_1 U613 ( .A1(n544), .A2(n407), .B1(n406), .Y(
s_tim_pscr_d[16]) );
sky130_fd_sc_hd__o21ai_1 U614 ( .A1(
\u_clk_int_even_div_simple/s_div_done_q [1]), .A2(n410), .B1(n408),
.Y(\u_clk_int_even_div_simple/s_div_done_d [1]) );
sky130_fd_sc_hd__o22ai_1 U615 ( .A1(n413), .A2(n412), .B1(n411), .B2(n410),
.Y(\u_clk_int_even_div_simple/s_div_done_d [2]) );
sky130_fd_sc_hd__nor2b_1 U616 ( .B_N(s_normal_mode), .A(n414), .Y(n477) );
sky130_fd_sc_hd__nand2_1 U617 ( .A(s_tim_cmp_q[31]), .B(n477), .Y(n416) );
sky130_fd_sc_hd__nand2_1 U618 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N105 ), .Y(n415) );
sky130_fd_sc_hd__nand2_1 U619 ( .A(n416), .B(n415), .Y(n82) );
sky130_fd_sc_hd__nand2_1 U620 ( .A(s_tim_cmp_q[30]), .B(n477), .Y(n418) );
sky130_fd_sc_hd__nand2_1 U621 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N104 ), .Y(n417) );
sky130_fd_sc_hd__nand2_1 U622 ( .A(n418), .B(n417), .Y(n81) );
sky130_fd_sc_hd__nand2_1 U623 ( .A(s_tim_cmp_q[29]), .B(n477), .Y(n420) );
sky130_fd_sc_hd__nand2_1 U624 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N103 ), .Y(n419) );
sky130_fd_sc_hd__nand2_1 U625 ( .A(n420), .B(n419), .Y(n80) );
sky130_fd_sc_hd__nand2_1 U626 ( .A(s_tim_cmp_q[28]), .B(n477), .Y(n422) );
sky130_fd_sc_hd__nand2_1 U627 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N102 ), .Y(n421) );
sky130_fd_sc_hd__nand2_1 U628 ( .A(n422), .B(n421), .Y(n79) );
sky130_fd_sc_hd__nand2_1 U629 ( .A(s_tim_cmp_q[27]), .B(n477), .Y(n424) );
sky130_fd_sc_hd__nand2_1 U630 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N101 ), .Y(n423) );
sky130_fd_sc_hd__nand2_1 U631 ( .A(n424), .B(n423), .Y(n78) );
sky130_fd_sc_hd__nand2_1 U632 ( .A(s_tim_cmp_q[26]), .B(n477), .Y(n426) );
sky130_fd_sc_hd__nand2_1 U633 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N100 ), .Y(n425) );
sky130_fd_sc_hd__nand2_1 U634 ( .A(n426), .B(n425), .Y(n77) );
sky130_fd_sc_hd__nand2_1 U635 ( .A(s_tim_cmp_q[25]), .B(n477), .Y(n428) );
sky130_fd_sc_hd__nand2_1 U636 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N99 ), .Y(n427) );
sky130_fd_sc_hd__nand2_1 U637 ( .A(n428), .B(n427), .Y(n76) );
sky130_fd_sc_hd__nand2_1 U638 ( .A(s_tim_cmp_q[24]), .B(n477), .Y(n430) );
sky130_fd_sc_hd__nand2_1 U639 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N98 ), .Y(n429) );
sky130_fd_sc_hd__nand2_1 U640 ( .A(n430), .B(n429), .Y(n75) );
sky130_fd_sc_hd__nand2_1 U641 ( .A(s_tim_cmp_q[23]), .B(n477), .Y(n432) );
sky130_fd_sc_hd__nand2_1 U642 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N97 ), .Y(n431) );
sky130_fd_sc_hd__nand2_1 U643 ( .A(n432), .B(n431), .Y(n74) );
sky130_fd_sc_hd__nand2_1 U644 ( .A(s_tim_cmp_q[22]), .B(n477), .Y(n434) );
sky130_fd_sc_hd__nand2_1 U645 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N96 ), .Y(n433) );
sky130_fd_sc_hd__nand2_1 U646 ( .A(n434), .B(n433), .Y(n73) );
sky130_fd_sc_hd__nand2_1 U647 ( .A(s_tim_cmp_q[21]), .B(n477), .Y(n436) );
sky130_fd_sc_hd__nand2_1 U648 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N95 ), .Y(n435) );
sky130_fd_sc_hd__nand2_1 U649 ( .A(n436), .B(n435), .Y(n72) );
sky130_fd_sc_hd__nand2_1 U650 ( .A(s_tim_cmp_q[20]), .B(n477), .Y(n438) );
sky130_fd_sc_hd__nand2_1 U651 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N94 ), .Y(n437) );
sky130_fd_sc_hd__nand2_1 U652 ( .A(n438), .B(n437), .Y(n71) );
sky130_fd_sc_hd__nand2_1 U653 ( .A(s_tim_cmp_q[19]), .B(n477), .Y(n440) );
sky130_fd_sc_hd__nand2_1 U654 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N93 ), .Y(n439) );
sky130_fd_sc_hd__nand2_1 U655 ( .A(n440), .B(n439), .Y(n70) );
sky130_fd_sc_hd__nand2_1 U656 ( .A(s_tim_cmp_q[18]), .B(n477), .Y(n442) );
sky130_fd_sc_hd__nand2_1 U657 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N92 ), .Y(n441) );
sky130_fd_sc_hd__nand2_1 U658 ( .A(n442), .B(n441), .Y(n69) );
sky130_fd_sc_hd__nand2_1 U659 ( .A(s_tim_cmp_q[17]), .B(n477), .Y(n444) );
sky130_fd_sc_hd__nand2_1 U660 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N91 ), .Y(n443) );
sky130_fd_sc_hd__nand2_1 U661 ( .A(n444), .B(n443), .Y(n68) );
sky130_fd_sc_hd__nand2_1 U662 ( .A(s_tim_cmp_q[16]), .B(n477), .Y(n446) );
sky130_fd_sc_hd__nand2_1 U663 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N90 ), .Y(n445) );
sky130_fd_sc_hd__nand2_1 U664 ( .A(n446), .B(n445), .Y(n67) );
sky130_fd_sc_hd__nand2_1 U665 ( .A(s_tim_cmp_q[15]), .B(n477), .Y(n448) );
sky130_fd_sc_hd__nand2_1 U666 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N89 ), .Y(n447) );
sky130_fd_sc_hd__nand2_1 U667 ( .A(n448), .B(n447), .Y(n66) );
sky130_fd_sc_hd__nand2_1 U668 ( .A(s_tim_cmp_q[14]), .B(n477), .Y(n450) );
sky130_fd_sc_hd__nand2_1 U669 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N88 ), .Y(n449) );
sky130_fd_sc_hd__nand2_1 U670 ( .A(n450), .B(n449), .Y(n65) );
sky130_fd_sc_hd__nand2_1 U671 ( .A(s_tim_cmp_q[13]), .B(n477), .Y(n452) );
sky130_fd_sc_hd__nand2_1 U672 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N87 ), .Y(n451) );
sky130_fd_sc_hd__nand2_1 U673 ( .A(n452), .B(n451), .Y(n64) );
sky130_fd_sc_hd__nand2_1 U674 ( .A(s_tim_cmp_q[12]), .B(n477), .Y(n454) );
sky130_fd_sc_hd__nand2_1 U675 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N86 ), .Y(n453) );
sky130_fd_sc_hd__nand2_1 U676 ( .A(n454), .B(n453), .Y(n63) );
sky130_fd_sc_hd__nand2_1 U677 ( .A(s_tim_cmp_q[11]), .B(n477), .Y(n456) );
sky130_fd_sc_hd__nand2_1 U678 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N85 ), .Y(n455) );
sky130_fd_sc_hd__nand2_1 U679 ( .A(n456), .B(n455), .Y(n62) );
sky130_fd_sc_hd__nand2_1 U680 ( .A(s_tim_cmp_q[10]), .B(n477), .Y(n458) );
sky130_fd_sc_hd__nand2_1 U681 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N84 ), .Y(n457) );
sky130_fd_sc_hd__nand2_1 U682 ( .A(n458), .B(n457), .Y(n61) );
sky130_fd_sc_hd__nand2_1 U683 ( .A(s_tim_cmp_q[9]), .B(n477), .Y(n460) );
sky130_fd_sc_hd__nand2_1 U684 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N83 ), .Y(n459) );
sky130_fd_sc_hd__nand2_1 U685 ( .A(n460), .B(n459), .Y(n60) );
sky130_fd_sc_hd__nand2_1 U686 ( .A(s_tim_cmp_q[8]), .B(n477), .Y(n462) );
sky130_fd_sc_hd__nand2_1 U687 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N82 ), .Y(n461) );
sky130_fd_sc_hd__nand2_1 U688 ( .A(n462), .B(n461), .Y(n59) );
sky130_fd_sc_hd__nand2_1 U689 ( .A(s_tim_cmp_q[7]), .B(n477), .Y(n464) );
sky130_fd_sc_hd__nand2_1 U690 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N81 ), .Y(n463) );
sky130_fd_sc_hd__nand2_1 U691 ( .A(n464), .B(n463), .Y(n58) );
sky130_fd_sc_hd__nand2_1 U692 ( .A(s_tim_cmp_q[6]), .B(n477), .Y(n466) );
sky130_fd_sc_hd__nand2_1 U693 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N80 ), .Y(n465) );
sky130_fd_sc_hd__nand2_1 U694 ( .A(n466), .B(n465), .Y(n57) );
sky130_fd_sc_hd__nand2_1 U695 ( .A(s_tim_cmp_q[5]), .B(n477), .Y(n468) );
sky130_fd_sc_hd__nand2_1 U696 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N79 ), .Y(n467) );
sky130_fd_sc_hd__nand2_1 U697 ( .A(n468), .B(n467), .Y(n56) );
sky130_fd_sc_hd__nand2_1 U698 ( .A(s_tim_cmp_q[4]), .B(n477), .Y(n470) );
sky130_fd_sc_hd__nand2_1 U699 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N78 ), .Y(n469) );
sky130_fd_sc_hd__nand2_1 U700 ( .A(n470), .B(n469), .Y(n55) );
sky130_fd_sc_hd__nand2_1 U701 ( .A(s_tim_cmp_q[3]), .B(n477), .Y(n472) );
sky130_fd_sc_hd__nand2_1 U702 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N77 ), .Y(n471) );
sky130_fd_sc_hd__nand2_1 U703 ( .A(n472), .B(n471), .Y(n54) );
sky130_fd_sc_hd__nand2_1 U704 ( .A(s_tim_cmp_q[2]), .B(n477), .Y(n474) );
sky130_fd_sc_hd__nand2_1 U705 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N76 ), .Y(n473) );
sky130_fd_sc_hd__nand2_1 U706 ( .A(n474), .B(n473), .Y(n53) );
sky130_fd_sc_hd__nand2_1 U707 ( .A(s_tim_cmp_q[1]), .B(n477), .Y(n476) );
sky130_fd_sc_hd__nand2_1 U708 ( .A(n479), .B(
\u_tim_cnt_counter/u_delta_counter/N75 ), .Y(n475) );
sky130_fd_sc_hd__nand2_1 U709 ( .A(n476), .B(n475), .Y(n52) );
sky130_fd_sc_hd__nand2_1 U710 ( .A(s_tim_cmp_q[0]), .B(n477), .Y(n481) );
sky130_fd_sc_hd__clkinv_1 U711 ( .A(\u_tim_cnt_counter/u_delta_counter/n64 ),
.Y(n478) );
sky130_fd_sc_hd__nand2_1 U712 ( .A(n479), .B(n478), .Y(n480) );
sky130_fd_sc_hd__nand2_1 U713 ( .A(n481), .B(n480), .Y(n51) );
sky130_fd_sc_hd__nor4_1 U714 ( .A(apb4_paddr[3]), .B(apb4_paddr[4]), .C(
apb4_paddr[2]), .D(n540), .Y(n549) );
sky130_fd_sc_hd__nand2_1 U715 ( .A(s_tim_ctrl_q[3]), .B(n547), .Y(n483) );
sky130_fd_sc_hd__nand2_1 U716 ( .A(apb4_pwdata[3]), .B(n549), .Y(n482) );
sky130_fd_sc_hd__nand2_1 U717 ( .A(n483), .B(n482), .Y(s_tim_ctrl_d[3]) );
sky130_fd_sc_hd__nand2_1 U718 ( .A(n484), .B(n533), .Y(n487) );
sky130_fd_sc_hd__nor4_1 U719 ( .A(apb4_paddr[3]), .B(apb4_paddr[4]), .C(
apb4_paddr[2]), .D(n485), .Y(n532) );
sky130_fd_sc_hd__a22oi_1 U720 ( .A1(s_tim_cmp_q[1]), .A2(n531), .B1(
s_tim_ctrl_q[1]), .B2(n532), .Y(n486) );
sky130_fd_sc_hd__nand2_1 U721 ( .A(n487), .B(n486), .Y(apb4_prdata[1]) );
sky130_fd_sc_hd__nand2_1 U722 ( .A(n488), .B(n533), .Y(n490) );
sky130_fd_sc_hd__a22oi_1 U723 ( .A1(n532), .A2(s_tim_ctrl_q[2]), .B1(n531),
.B2(s_tim_cmp_q[2]), .Y(n489) );
sky130_fd_sc_hd__nand2_1 U724 ( .A(n490), .B(n489), .Y(apb4_prdata[2]) );
sky130_fd_sc_hd__nand2_1 U725 ( .A(s_tim_cmp_q[3]), .B(n531), .Y(n494) );
sky130_fd_sc_hd__nand2_1 U726 ( .A(s_tim_ctrl_q[3]), .B(n532), .Y(n493) );
sky130_fd_sc_hd__nand2_1 U727 ( .A(n491), .B(n533), .Y(n492) );
sky130_fd_sc_hd__nand3_1 U728 ( .A(n494), .B(n493), .C(n492), .Y(
apb4_prdata[3]) );
sky130_fd_sc_hd__nand2_1 U729 ( .A(s_tim_cmp_q[4]), .B(n531), .Y(n496) );
sky130_fd_sc_hd__nand2_1 U730 ( .A(n93), .B(n533), .Y(n495) );
sky130_fd_sc_hd__nand2_1 U731 ( .A(n496), .B(n495), .Y(apb4_prdata[4]) );
sky130_fd_sc_hd__nand2_1 U732 ( .A(s_tim_cmp_q[5]), .B(n531), .Y(n499) );
sky130_fd_sc_hd__nand2_1 U733 ( .A(n497), .B(n533), .Y(n498) );
sky130_fd_sc_hd__nand2_1 U734 ( .A(n499), .B(n498), .Y(apb4_prdata[5]) );
sky130_fd_sc_hd__nand2_1 U735 ( .A(s_tim_cmp_q[6]), .B(n531), .Y(n501) );
sky130_fd_sc_hd__nand2_1 U736 ( .A(n501), .B(n500), .Y(apb4_prdata[6]) );
sky130_fd_sc_hd__nand2_1 U737 ( .A(s_tim_cmp_q[7]), .B(n531), .Y(n503) );
sky130_fd_sc_hd__nand2_1 U738 ( .A(n119), .B(n533), .Y(n502) );
sky130_fd_sc_hd__nand2_1 U739 ( .A(n503), .B(n502), .Y(apb4_prdata[7]) );
sky130_fd_sc_hd__nand2_1 U740 ( .A(s_tim_cmp_q[8]), .B(n531), .Y(n505) );
sky130_fd_sc_hd__nand2_1 U741 ( .A(n88), .B(n533), .Y(n504) );
sky130_fd_sc_hd__nand2_1 U742 ( .A(n505), .B(n504), .Y(apb4_prdata[8]) );
sky130_fd_sc_hd__nand2_1 U743 ( .A(s_tim_cmp_q[9]), .B(n531), .Y(n508) );
sky130_fd_sc_hd__nand2_1 U744 ( .A(n506), .B(n533), .Y(n507) );
sky130_fd_sc_hd__nand2_1 U745 ( .A(n508), .B(n507), .Y(apb4_prdata[9]) );
sky130_fd_sc_hd__nand2_1 U746 ( .A(s_tim_cmp_q[10]), .B(n531), .Y(n511) );
sky130_fd_sc_hd__nand2_1 U747 ( .A(n509), .B(n533), .Y(n510) );
sky130_fd_sc_hd__nand2_1 U748 ( .A(n511), .B(n510), .Y(apb4_prdata[10]) );
sky130_fd_sc_hd__nand2_1 U749 ( .A(s_tim_cmp_q[11]), .B(n531), .Y(n513) );
sky130_fd_sc_hd__nand2_1 U750 ( .A(n85), .B(n533), .Y(n512) );
sky130_fd_sc_hd__nand2_1 U751 ( .A(n513), .B(n512), .Y(apb4_prdata[11]) );
sky130_fd_sc_hd__nand2_1 U752 ( .A(s_tim_cmp_q[12]), .B(n531), .Y(n515) );
sky130_fd_sc_hd__nand2_1 U753 ( .A(s_tim_pscr_q[12]), .B(n533), .Y(n514) );
sky130_fd_sc_hd__nand2_1 U754 ( .A(n515), .B(n514), .Y(apb4_prdata[12]) );
sky130_fd_sc_hd__nand2_1 U755 ( .A(s_tim_cmp_q[13]), .B(n531), .Y(n518) );
sky130_fd_sc_hd__nand2_1 U756 ( .A(n516), .B(n533), .Y(n517) );
sky130_fd_sc_hd__nand2_1 U757 ( .A(n518), .B(n517), .Y(apb4_prdata[13]) );
sky130_fd_sc_hd__nand2_1 U758 ( .A(s_tim_cmp_q[14]), .B(n531), .Y(n520) );
sky130_fd_sc_hd__nand2_1 U759 ( .A(s_tim_pscr_q[14]), .B(n533), .Y(n519) );
sky130_fd_sc_hd__nand2_1 U760 ( .A(n520), .B(n519), .Y(apb4_prdata[14]) );
sky130_fd_sc_hd__nand2_1 U761 ( .A(s_tim_cmp_q[15]), .B(n531), .Y(n522) );
sky130_fd_sc_hd__nand2_1 U762 ( .A(s_tim_pscr_q[15]), .B(n533), .Y(n521) );
sky130_fd_sc_hd__nand2_1 U763 ( .A(n522), .B(n521), .Y(apb4_prdata[15]) );
sky130_fd_sc_hd__nand2_1 U764 ( .A(s_tim_cmp_q[16]), .B(n531), .Y(n524) );
sky130_fd_sc_hd__nand2_1 U765 ( .A(s_tim_pscr_q[16]), .B(n533), .Y(n523) );
sky130_fd_sc_hd__nand2_1 U766 ( .A(n524), .B(n523), .Y(apb4_prdata[16]) );
sky130_fd_sc_hd__nand2_1 U767 ( .A(s_tim_cmp_q[17]), .B(n531), .Y(n526) );
sky130_fd_sc_hd__nand2_1 U768 ( .A(s_tim_pscr_q[17]), .B(n533), .Y(n525) );
sky130_fd_sc_hd__nand2_1 U769 ( .A(n526), .B(n525), .Y(apb4_prdata[17]) );
sky130_fd_sc_hd__nand2_1 U770 ( .A(s_tim_cmp_q[18]), .B(n531), .Y(n528) );
sky130_fd_sc_hd__nand2_1 U771 ( .A(s_tim_pscr_q[18]), .B(n533), .Y(n527) );
sky130_fd_sc_hd__nand2_1 U772 ( .A(n528), .B(n527), .Y(apb4_prdata[18]) );
sky130_fd_sc_hd__nor3_1 U773 ( .A(apb4_paddr[2]), .B(n530), .C(n529), .Y(
n538) );
sky130_fd_sc_hd__a22oi_1 U774 ( .A1(s_tim_cmp_q[0]), .A2(n531), .B1(n538),
.B2(\s_tim_stat_q[0] ), .Y(n535) );
sky130_fd_sc_hd__a22oi_1 U775 ( .A1(s_tim_pscr_q[0]), .A2(n533), .B1(
s_tim_ctrl_q[0]), .B2(n532), .Y(n534) );
sky130_fd_sc_hd__nand2_1 U776 ( .A(n535), .B(n534), .Y(apb4_prdata[0]) );
sky130_fd_sc_hd__nand3_1 U777 ( .A(\s_tim_stat_q[0] ), .B(s_tim_ctrl_q[0]),
.C(n537), .Y(n536) );
sky130_fd_sc_hd__o21ai_1 U778 ( .A1(n538), .A2(n537), .B1(n536), .Y(s_irq_d)
);
sky130_fd_sc_hd__nor3_2 U779 ( .A(n541), .B(n540), .C(n539), .Y(n542) );
sky130_fd_sc_hd__a22o_1 U780 ( .A1(n542), .A2(apb4_pwdata[0]), .B1(n543),
.B2(s_tim_cmp_q[0]), .X(s_tim_cmp_d[0]) );
sky130_fd_sc_hd__a22o_1 U781 ( .A1(n542), .A2(apb4_pwdata[1]), .B1(n543),
.B2(s_tim_cmp_q[1]), .X(s_tim_cmp_d[1]) );
sky130_fd_sc_hd__a22o_1 U782 ( .A1(n542), .A2(apb4_pwdata[2]), .B1(n543),
.B2(s_tim_cmp_q[2]), .X(s_tim_cmp_d[2]) );
sky130_fd_sc_hd__a22o_1 U783 ( .A1(n542), .A2(apb4_pwdata[3]), .B1(n543),
.B2(s_tim_cmp_q[3]), .X(s_tim_cmp_d[3]) );
sky130_fd_sc_hd__a22o_1 U784 ( .A1(n542), .A2(apb4_pwdata[4]), .B1(n543),
.B2(s_tim_cmp_q[4]), .X(s_tim_cmp_d[4]) );
sky130_fd_sc_hd__a22o_1 U785 ( .A1(n542), .A2(apb4_pwdata[5]), .B1(n543),
.B2(s_tim_cmp_q[5]), .X(s_tim_cmp_d[5]) );
sky130_fd_sc_hd__a22o_1 U786 ( .A1(n542), .A2(apb4_pwdata[6]), .B1(n543),
.B2(s_tim_cmp_q[6]), .X(s_tim_cmp_d[6]) );
sky130_fd_sc_hd__a22o_1 U787 ( .A1(n542), .A2(apb4_pwdata[7]), .B1(n543),
.B2(s_tim_cmp_q[7]), .X(s_tim_cmp_d[7]) );
sky130_fd_sc_hd__a22o_1 U788 ( .A1(n542), .A2(apb4_pwdata[8]), .B1(n543),
.B2(s_tim_cmp_q[8]), .X(s_tim_cmp_d[8]) );
sky130_fd_sc_hd__a22o_1 U789 ( .A1(n542), .A2(apb4_pwdata[9]), .B1(n543),
.B2(s_tim_cmp_q[9]), .X(s_tim_cmp_d[9]) );
sky130_fd_sc_hd__a22o_1 U790 ( .A1(n542), .A2(apb4_pwdata[10]), .B1(n543),
.B2(s_tim_cmp_q[10]), .X(s_tim_cmp_d[10]) );
sky130_fd_sc_hd__a22o_1 U791 ( .A1(n542), .A2(apb4_pwdata[11]), .B1(n543),
.B2(s_tim_cmp_q[11]), .X(s_tim_cmp_d[11]) );
sky130_fd_sc_hd__a22o_1 U792 ( .A1(n542), .A2(apb4_pwdata[12]), .B1(n543),
.B2(s_tim_cmp_q[12]), .X(s_tim_cmp_d[12]) );
sky130_fd_sc_hd__a22o_1 U793 ( .A1(n542), .A2(apb4_pwdata[13]), .B1(n543),
.B2(s_tim_cmp_q[13]), .X(s_tim_cmp_d[13]) );
sky130_fd_sc_hd__a22o_1 U794 ( .A1(n542), .A2(apb4_pwdata[14]), .B1(n543),
.B2(s_tim_cmp_q[14]), .X(s_tim_cmp_d[14]) );
sky130_fd_sc_hd__a22o_1 U795 ( .A1(n542), .A2(apb4_pwdata[15]), .B1(n543),
.B2(s_tim_cmp_q[15]), .X(s_tim_cmp_d[15]) );
sky130_fd_sc_hd__a22o_1 U796 ( .A1(n542), .A2(apb4_pwdata[16]), .B1(n543),
.B2(s_tim_cmp_q[16]), .X(s_tim_cmp_d[16]) );
sky130_fd_sc_hd__a22o_1 U797 ( .A1(n542), .A2(apb4_pwdata[17]), .B1(n543),
.B2(s_tim_cmp_q[17]), .X(s_tim_cmp_d[17]) );
sky130_fd_sc_hd__a22o_1 U798 ( .A1(n542), .A2(apb4_pwdata[18]), .B1(n543),
.B2(s_tim_cmp_q[18]), .X(s_tim_cmp_d[18]) );
sky130_fd_sc_hd__a22o_1 U799 ( .A1(n542), .A2(apb4_pwdata[19]), .B1(n543),
.B2(s_tim_cmp_q[19]), .X(s_tim_cmp_d[19]) );
sky130_fd_sc_hd__a22o_1 U800 ( .A1(n543), .A2(s_tim_cmp_q[20]), .B1(n542),
.B2(apb4_pwdata[20]), .X(s_tim_cmp_d[20]) );
sky130_fd_sc_hd__a22o_1 U801 ( .A1(n543), .A2(s_tim_cmp_q[21]), .B1(n542),
.B2(apb4_pwdata[21]), .X(s_tim_cmp_d[21]) );
sky130_fd_sc_hd__a22o_1 U802 ( .A1(n543), .A2(s_tim_cmp_q[22]), .B1(n542),
.B2(apb4_pwdata[22]), .X(s_tim_cmp_d[22]) );
sky130_fd_sc_hd__a22o_1 U803 ( .A1(n543), .A2(s_tim_cmp_q[23]), .B1(n542),
.B2(apb4_pwdata[23]), .X(s_tim_cmp_d[23]) );
sky130_fd_sc_hd__a22o_1 U804 ( .A1(n543), .A2(s_tim_cmp_q[24]), .B1(n542),
.B2(apb4_pwdata[24]), .X(s_tim_cmp_d[24]) );
sky130_fd_sc_hd__a22o_1 U805 ( .A1(n543), .A2(s_tim_cmp_q[25]), .B1(n542),
.B2(apb4_pwdata[25]), .X(s_tim_cmp_d[25]) );
sky130_fd_sc_hd__a22o_1 U806 ( .A1(n543), .A2(s_tim_cmp_q[26]), .B1(n542),
.B2(apb4_pwdata[26]), .X(s_tim_cmp_d[26]) );
sky130_fd_sc_hd__a22o_1 U807 ( .A1(n543), .A2(s_tim_cmp_q[27]), .B1(n542),
.B2(apb4_pwdata[27]), .X(s_tim_cmp_d[27]) );
sky130_fd_sc_hd__a22o_1 U808 ( .A1(n543), .A2(s_tim_cmp_q[28]), .B1(n542),
.B2(apb4_pwdata[28]), .X(s_tim_cmp_d[28]) );
sky130_fd_sc_hd__a22o_1 U809 ( .A1(n543), .A2(s_tim_cmp_q[29]), .B1(n542),
.B2(apb4_pwdata[29]), .X(s_tim_cmp_d[29]) );
sky130_fd_sc_hd__a22o_1 U810 ( .A1(n543), .A2(s_tim_cmp_q[30]), .B1(n542),
.B2(apb4_pwdata[30]), .X(s_tim_cmp_d[30]) );
sky130_fd_sc_hd__a22o_1 U811 ( .A1(n543), .A2(s_tim_cmp_q[31]), .B1(n542),
.B2(apb4_pwdata[31]), .X(s_tim_cmp_d[31]) );
sky130_fd_sc_hd__a22o_1 U812 ( .A1(n545), .A2(apb4_pwdata[0]), .B1(
s_tim_pscr_q[0]), .B2(n544), .X(s_tim_pscr_d[0]) );
sky130_fd_sc_hd__a22o_1 U813 ( .A1(n549), .A2(apb4_pwdata[0]), .B1(n547),
.B2(s_tim_ctrl_q[0]), .X(s_tim_ctrl_d[0]) );
sky130_fd_sc_hd__a22o_1 U814 ( .A1(n549), .A2(apb4_pwdata[1]), .B1(n547),
.B2(s_tim_ctrl_q[1]), .X(s_tim_ctrl_d[1]) );
sky130_fd_sc_hd__o22ai_1 U815 ( .A1(n549), .A2(n548), .B1(n547), .B2(n546),
.Y(s_tim_ctrl_d[2]) );
endmodule
|