splat64 0.36.0__py3-none-any.whl → 0.36.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
splat/__init__.py CHANGED
@@ -1,7 +1,7 @@
1
1
  __package_name__ = __name__
2
2
 
3
3
  # Should be synced with pyproject.toml
4
- __version__ = "0.36.0"
4
+ __version__ = "0.36.2"
5
5
  __author__ = "ethteck"
6
6
 
7
7
  from . import util as util
@@ -594,7 +594,7 @@ class LinkerWriter:
594
594
  if not noload:
595
595
  seg_rom_start = get_segment_rom_start(seg_name)
596
596
  line += f" AT({seg_rom_start})"
597
- if options.opts.emit_subalign and segment.subalign != None:
597
+ if options.opts.emit_subalign and segment.subalign is not None:
598
598
  line += f" SUBALIGN({segment.subalign})"
599
599
 
600
600
  self._writeln(line)
@@ -636,7 +636,7 @@ class LinkerWriter:
636
636
  if noload:
637
637
  line += " (NOLOAD)"
638
638
  line += " :"
639
- if options.opts.emit_subalign and segment.subalign != None:
639
+ if options.opts.emit_subalign and segment.subalign is not None:
640
640
  line += f" SUBALIGN({segment.subalign})"
641
641
 
642
642
  self._writeln(line)
splat/segtypes/segment.py CHANGED
@@ -56,7 +56,7 @@ def parse_segment_subalign(segment: Union[dict, list]) -> Optional[int]:
56
56
  default = options.opts.subalign
57
57
  if isinstance(segment, dict):
58
58
  subalign = segment.get("subalign", default)
59
- if subalign != None:
59
+ if subalign is not None:
60
60
  subalign = int(subalign)
61
61
  return subalign
62
62
  return default
@@ -24,6 +24,12 @@ def write_all_files():
24
24
  def _write(filepath: str, contents: str):
25
25
  p = Path(os.path.normpath(options.opts.base_path / filepath))
26
26
  p.parent.mkdir(parents=True, exist_ok=True)
27
+
28
+ if p.exists():
29
+ with p.open("r", encoding="UTF-8") as f:
30
+ existing_contents = f.read()
31
+ if existing_contents == contents:
32
+ return
27
33
  with p.open("w", encoding="UTF-8", newline="\n") as f:
28
34
  f.write(contents)
29
35
 
@@ -336,128 +342,136 @@ def write_assembly_inc_files():
336
342
 
337
343
 
338
344
  def write_gte_macros():
339
- # Taken directly from https://github.com/Decompollaborate/rabbitizer/blob/develop/docs/r3000gte/gte_macros.s
345
+ # Taken directly from https://github.com/Decompollaborate/rabbitizer/blob/-/docs/r3000gte/gte_macros.s
340
346
  # Please try to upstream any fix/update done here.
341
- gte_macros = """
342
- ## GTE instructions macros
343
- ## This macros are meant to be used with GAS and avoid using DMPSX
347
+ gte_macros = """\
348
+ .ifndef .L_GTE_MACRO_INC
349
+ .L_GTE_MACRO_INC:
350
+
351
+ ## GTE instruction macros
352
+ ## These are meant for use with GAS and replace DMPSX
353
+
354
+ .macro cop2op fake_op, op, gbg = 0, sf = 1, mx = 0, v = 0, cv = 0, lm = 0
355
+ cop2 \\fake_op << 20 | \\gbg << 20 | \\sf << 19 | \\mx << 17 | \\v << 15 | \\cv << 13 | \\lm << 10 | \\op
356
+ .endm
344
357
 
345
358
  /* RTPS 15 0x4A180001 Perspective transform */
346
359
  .macro rtps
347
- .word 0x4A180001
360
+ cop2op 0x01, 0x01
348
361
  .endm
349
362
 
350
363
  /* RTPT 23 0x4A280030 Perspective transform on 3 points */
351
364
  .macro rtpt
352
- .word 0x4A280030
365
+ cop2op 0x02, 0x30
353
366
  .endm
354
367
 
355
368
  /* DPCL 8 0x4A680029 Depth Cue Color light */
356
369
  .macro dpcl
357
- .word 0x4A680029
370
+ cop2op 0x06, 0x29
358
371
  .endm
359
372
 
360
373
  /* DPCS 8 0x4A780010 Depth Cueing */
361
374
  .macro dpcs
362
- .word 0x4A780010
375
+ cop2op 0x07, 0x10
363
376
  .endm
364
377
 
365
378
  /* DPCT 17 0x4AF8002A Depth cue color RGB0,RGB1,RGB2 */
366
379
  .macro dpct
367
- .word 0x4AF8002A
380
+ cop2op 0x0F, 0x2A
368
381
  .endm
369
382
 
370
383
  /* INTPL 8 0x4A980011 Interpolation of vector and far color */
371
384
  .macro intpl
372
- .word 0x4A980011
385
+ cop2op 0x09, 0x11
373
386
  .endm
374
387
 
375
388
  /* NCS 14 0x4AC8041E Normal color v0 */
376
389
  .macro ncs
377
- .word 0x4AC8041E
390
+ cop2op 0x0C, 0x1E, lm = 1
378
391
  .endm
379
392
 
380
393
  /* NCT 30 0x4AD80420 Normal color v0, v1, v2 */
381
394
  .macro nct
382
- .word 0x4AD80420
395
+ cop2op 0x0D, 0x20, lm = 1
383
396
  .endm
384
397
 
385
398
  /* NCDS 19 0x4AE80413 Normal color depth cuev0 */
386
399
  .macro ncds
387
- .word 0x4AE80413
400
+ cop2op 0x0E, 0x13, lm = 1
388
401
  .endm
389
402
 
390
403
  /* NCDT 44 0x4AF80416 Normal color depth cue v0, v1, v2 */
391
404
  .macro ncdt
392
- .word 0x4AF80416
405
+ cop2op 0x0F, 0x16, lm = 1
393
406
  .endm
394
407
 
395
408
  /* NCCS 17 0x4B08041B Normal color col. v0 */
396
409
  .macro nccs
397
- .word 0x4B08041B
410
+ cop2op 0x10, 0x1B, lm = 1
398
411
  .endm
399
412
 
400
413
  /* NCCT 39 0x4B18043F Normal color col.v0, v1, v2 */
401
414
  .macro ncct
402
- .word 0x4B18043F
415
+ cop2op 0x11, 0x3F, lm = 1
403
416
  .endm
404
417
 
405
418
  /* CDP 13 0x4B280414 Color Depth Queue */
406
419
  .macro cdp
407
- .word 0x4B280414
420
+ cop2op 0x12, 0x14, lm = 1
408
421
  .endm
409
422
 
410
423
  /* CC 11 0x4B38041C Color Col. */
411
424
  .macro cc
412
- .word 0x4B38041C
425
+ cop2op 0x13, 0x1C, lm = 1
413
426
  .endm
414
427
 
415
428
  /* NCLIP 8 0x4B400006 Normal clipping */
416
429
  .macro nclip
417
- .word 0x4B400006
430
+ cop2op 0x14, 0x06, sf = 0
418
431
  .endm
419
432
 
420
433
  /* AVSZ3 5 0x4B58002D Average of three Z values */
421
434
  .macro avsz3
422
- .word 0x4B58002D
435
+ cop2op 0x15, 0x2D
423
436
  .endm
424
437
 
425
438
  /* AVSZ4 6 0x4B68002E Average of four Z values */
426
439
  .macro avsz4
427
- .word 0x4B68002E
440
+ cop2op 0x16, 0x2E
428
441
  .endm
429
442
 
430
443
 
431
444
  ## Instructions which take an argument
445
+ # gbg: arg is 5 bit wide
432
446
  # sf : arg is 1 bit wide
433
447
  # mx : arg is 2 bit wide
434
448
  # v : arg is 2 bit wide
435
449
  # cv : arg is 2 bit wide
436
450
  # lm : arg is 1 bit wide
437
451
 
438
- /* MVMVA 8 0x4A400012 Multiply vector by matrix and vector addition. */
452
+ /* mvmva 8 0x4A4nnn12 Multiply vector by matrix and vector addition. */
439
453
  .macro mvmva sf, mx, v, cv, lm
440
- .word 0x4A400012 | (\\sf & 0x1) << 19 | (\\mx & 0x3) << 17 | (\\v & 0x3) << 15 | (\\cv & 0x3) << 13 | (\\lm & 0x1) << 10
454
+ cop2op 0x04, 0x12, sf = \\sf, mx = \\mx, v = \\v, cv = \\cv, lm = \\lm
441
455
  .endm
442
456
 
443
- /* SQR 5 0x4AA00428 Square of vector */
457
+ /* SQR 5 0x4AAn0428 Square of vector */
444
458
  .macro sqr sf
445
- .word 0x4AA00428 | (\\sf & 0x1) << 19
459
+ cop2op 0x0A, 0x28, sf = \\sf, lm = 1
446
460
  .endm
447
461
 
448
- /* OP 6 0x4B70000C Outer Product */
462
+ /* OP 6 0x4B7n000C Outer Product */
449
463
  .macro op sf
450
- .word 0x4B70000C | (\\sf & 0x1) << 19
464
+ cop2op 0x17, 0x0C, sf = \\sf
451
465
  .endm
452
466
 
453
- /* GPF 6 0x4B90003D General purpose interpolation */
467
+ /* GPF 6 0x4B9n003D General purpose interpolation */
454
468
  .macro gpf sf
455
- .word 0x4B90003D | (\\sf & 0x1) << 19
469
+ cop2op 0x19, 0x3D, sf = \\sf
456
470
  .endm
457
471
 
458
- /* GPL 5 0x4BA0003E general purpose interpolation */
472
+ /* GPL 5 0x4BAn003E general purpose interpolation */
459
473
  .macro gpl sf
460
- .word 0x4BA0003E | (\\sf & 0x1) << 19
474
+ cop2op 0x1A, 0x3E, sf = \\sf
461
475
  .endm
462
476
 
463
477
 
@@ -466,284 +480,286 @@ def write_gte_macros():
466
480
  /* rtv0 - 0x4A486012 v0 * rotmatrix */
467
481
  .macro rtv0
468
482
  # .word 0x4A486012
469
- MVMVA 1, 0, 0, 3, 0
483
+ mvmva 1, 0, 0, 3, 0
470
484
  .endm
471
485
 
472
486
  /* rtv1 - 0x4A48E012 v1 * rotmatrix */
473
487
  .macro rtv1
474
488
  # .word 0x4A48E012
475
- MVMVA 1, 0, 1, 3, 0
489
+ mvmva 1, 0, 1, 3, 0
476
490
  .endm
477
491
 
478
492
  /* rtv2 - 0x4A496012 v2 * rotmatrix */
479
493
  .macro rtv2
480
494
  # .word 0x4A496012
481
- MVMVA 1, 0, 2, 3, 0
495
+ mvmva 1, 0, 2, 3, 0
482
496
  .endm
483
497
 
484
498
  /* rtir12 - 0x4A49E012 ir * rotmatrix */
485
499
  .macro rtir12
486
500
  # .word 0x4A49E012
487
- MVMVA 1, 0, 3, 3, 0
501
+ mvmva 1, 0, 3, 3, 0
488
502
  .endm
489
503
 
490
504
  /* rtir0 - 0x4A41E012 ir * rotmatrix */
491
505
  .macro rtir0
492
506
  # .word 0x4A41E012
493
- MVMVA 0, 0, 3, 3, 0
507
+ mvmva 0, 0, 3, 3, 0
494
508
  .endm
495
509
 
496
510
  /* rtv0tr - 0x4A480012 v0 * rotmatrix + tr vector */
497
511
  .macro rtv0tr
498
512
  # .word 0x4A480012
499
- MVMVA 1, 0, 0, 0, 0
513
+ mvmva 1, 0, 0, 0, 0
500
514
  .endm
501
515
 
502
516
  /* rtv1tr - 0x4A488012 v1 * rotmatrix + tr vector */
503
517
  .macro rtv1tr
504
518
  # .word 0x4A488012
505
- MVMVA 1, 0, 1, 0, 0
519
+ mvmva 1, 0, 1, 0, 0
506
520
  .endm
507
521
 
508
522
  /* rtv2tr - 0x4A490012 v2 * rotmatrix + tr vector */
509
523
  .macro rtv2tr
510
524
  # .word 0x4A490012
511
- MVMVA 1, 0, 2, 0, 0
525
+ mvmva 1, 0, 2, 0, 0
512
526
  .endm
513
527
 
514
528
  /* rtirtr - 0x4A498012 ir * rotmatrix + tr vector */
515
529
  .macro rtirtr
516
530
  # .word 0x4A498012
517
- MVMVA 1, 0, 3, 0, 0
531
+ mvmva 1, 0, 3, 0, 0
518
532
  .endm
519
533
 
520
534
  /* rtv0bk - 0x4A482012 v0 * rotmatrix + bk vector */
521
535
  .macro rtv0bk
522
536
  # .word 0x4A482012
523
- MVMVA 1, 0, 0, 1, 0
537
+ mvmva 1, 0, 0, 1, 0
524
538
  .endm
525
539
 
526
540
  /* rtv1bk - 0x4A48A012 v1 * rotmatrix + bk vector */
527
541
  .macro rtv1bk
528
542
  # .word 0x4A48A012
529
- MVMVA 1, 0, 1, 1, 0
543
+ mvmva 1, 0, 1, 1, 0
530
544
  .endm
531
545
 
532
546
  /* rtv2bk - 0x4A492012 v2 * rotmatrix + bk vector */
533
547
  .macro rtv2bk
534
548
  # .word 0x4A492012
535
- MVMVA 1, 0, 2, 1, 0
549
+ mvmva 1, 0, 2, 1, 0
536
550
  .endm
537
551
 
538
552
  /* rtirbk - 0x4A49A012 ir * rotmatrix + bk vector */
539
553
  .macro rtirbk
540
554
  # .word 0x4A49A012
541
- MVMVA 1, 0, 3, 1, 0
555
+ mvmva 1, 0, 3, 1, 0
542
556
  .endm
543
557
 
544
558
  /* ll - 0x4A4A6412 v0 * light matrix. Lower limit result to 0 */
545
559
  .macro ll
546
560
  # .word 0x4A4A6412
547
- MVMVA 1, 1, 0, 3, 1
561
+ mvmva 1, 1, 0, 3, 1
548
562
  .endm
549
563
 
550
564
  /* llv0 - 0x4A4A6012 v0 * light matrix */
551
565
  .macro llv0
552
566
  # .word 0x4A4A6012
553
- MVMVA 1, 1, 0, 3, 0
567
+ mvmva 1, 1, 0, 3, 0
554
568
  .endm
555
569
 
556
570
  /* llv1 - 0x4A4AE012 v1 * light matrix */
557
571
  .macro llv1
558
572
  # .word 0x4A4AE012
559
- MVMVA 1, 1, 1, 3, 0
573
+ mvmva 1, 1, 1, 3, 0
560
574
  .endm
561
575
 
562
576
  /* llv2 - 0x4A4B6012 v2 * light matrix */
563
577
  .macro llv2
564
578
  # .word 0x4A4B6012
565
- MVMVA 1, 1, 2, 3, 0
579
+ mvmva 1, 1, 2, 3, 0
566
580
  .endm
567
581
 
568
582
  /* llvir - 0x4A4BE012 ir * light matrix */
569
583
  .macro llvir
570
584
  # .word 0x4A4BE012
571
- MVMVA 1, 1, 3, 3, 0
585
+ mvmva 1, 1, 3, 3, 0
572
586
  .endm
573
587
 
574
588
  /* llv0tr - 0x4A4A0012 v0 * light matrix + tr vector */
575
589
  .macro llv0tr
576
590
  # .word 0x4A4A0012
577
- MVMVA 1, 1, 0, 0, 0
591
+ mvmva 1, 1, 0, 0, 0
578
592
  .endm
579
593
 
580
594
  /* llv1tr - 0x4A4A8012 v1 * light matrix + tr vector */
581
595
  .macro llv1tr
582
596
  # .word 0x4A4A8012
583
- MVMVA 1, 1, 1, 0, 0
597
+ mvmva 1, 1, 1, 0, 0
584
598
  .endm
585
599
 
586
600
  /* llv2tr - 0x4A4B0012 v2 * light matrix + tr vector */
587
601
  .macro llv2tr
588
602
  # .word 0x4A4B0012
589
- MVMVA 1, 1, 2, 0, 0
603
+ mvmva 1, 1, 2, 0, 0
590
604
  .endm
591
605
 
592
606
  /* llirtr - 0x4A4B8012 ir * light matrix + tr vector */
593
607
  .macro llirtr
594
608
  # .word 0x4A4B8012
595
- MVMVA 1, 1, 3, 0, 0
609
+ mvmva 1, 1, 3, 0, 0
596
610
  .endm
597
611
 
598
612
  /* llv0bk - 0x4A4A2012 v0 * light matrix + bk vector */
599
613
  .macro llv0bk
600
614
  # .word 0x4A4A2012
601
- MVMVA 1, 1, 0, 1, 0
615
+ mvmva 1, 1, 0, 1, 0
602
616
  .endm
603
617
 
604
618
  /* llv1bk - 0x4A4AA012 v1 * light matrix + bk vector */
605
619
  .macro llv1bk
606
620
  # .word 0x4A4AA012
607
- MVMVA 1, 1, 1, 1, 0
621
+ mvmva 1, 1, 1, 1, 0
608
622
  .endm
609
623
 
610
624
  /* llv2bk - 0x4A4B2012 v2 * light matrix + bk vector */
611
625
  .macro llv2bk
612
626
  # .word 0x4A4B2012
613
- MVMVA 1, 1, 2, 1, 0
627
+ mvmva 1, 1, 2, 1, 0
614
628
  .endm
615
629
 
616
630
  /* llirbk - 0x4A4BA012 ir * light matrix + bk vector */
617
631
  .macro llirbk
618
632
  # .word 0x4A4BA012
619
- MVMVA 1, 1, 3, 1, 0
633
+ mvmva 1, 1, 3, 1, 0
620
634
  .endm
621
635
 
622
636
  /* lc - 0x4A4DA412 v0 * color matrix, Lower limit clamped to 0 */
623
637
  .macro lc
624
638
  # .word 0x4A4DA412
625
- MVMVA 1, 2, 3, 1, 1
639
+ mvmva 1, 2, 3, 1, 1
626
640
  .endm
627
641
 
628
642
  /* lcv0 - 0x4A4C6012 v0 * color matrix */
629
643
  .macro lcv0
630
644
  # .word 0x4A4C6012
631
- MVMVA 1, 2, 0, 3, 0
645
+ mvmva 1, 2, 0, 3, 0
632
646
  .endm
633
647
 
634
648
  /* lcv1 - 0x4A4CE012 v1 * color matrix */
635
649
  .macro lcv1
636
650
  # .word 0x4A4CE012
637
- MVMVA 1, 2, 1, 3, 0
651
+ mvmva 1, 2, 1, 3, 0
638
652
  .endm
639
653
 
640
654
  /* lcv2 - 0x4A4D6012 v2 * color matrix */
641
655
  .macro lcv2
642
656
  # .word 0x4A4D6012
643
- MVMVA 1, 2, 2, 3, 0
657
+ mvmva 1, 2, 2, 3, 0
644
658
  .endm
645
659
 
646
660
  /* lcvir - 0x4A4DE012 ir * color matrix */
647
661
  .macro lcvir
648
662
  # .word 0x4A4DE012
649
- MVMVA 1, 2, 3, 3, 0
663
+ mvmva 1, 2, 3, 3, 0
650
664
  .endm
651
665
 
652
666
  /* lcv0tr - 0x4A4C0012 v0 * color matrix + tr vector */
653
667
  .macro lcv0tr
654
668
  # .word 0x4A4C0012
655
- MVMVA 1, 2, 0, 0, 0
669
+ mvmva 1, 2, 0, 0, 0
656
670
  .endm
657
671
 
658
672
  /* lcv1tr - 0x4A4C8012 v1 * color matrix + tr vector */
659
673
  .macro lcv1tr
660
674
  # .word 0x4A4C8012
661
- MVMVA 1, 2, 1, 0, 0
675
+ mvmva 1, 2, 1, 0, 0
662
676
  .endm
663
677
 
664
678
  /* lcv2tr - 0x4A4D0012 v2 * color matrix + tr vector */
665
679
  .macro lcv2tr
666
680
  # .word 0x4A4D0012
667
- MVMVA 1, 2, 2, 0, 0
681
+ mvmva 1, 2, 2, 0, 0
668
682
  .endm
669
683
 
670
684
  /* lcirtr - 0x4A4D8012 ir * color matrix + tr vector */
671
685
  .macro lcirtr
672
686
  # .word 0x4A4D8012
673
- MVMVA 1, 2, 3, 0, 0
687
+ mvmva 1, 2, 3, 0, 0
674
688
  .endm
675
689
 
676
690
  /* lev0bk - 0x4A4C2012 v0 * color matrix + bk vector */
677
691
  .macro lev0bk
678
692
  # .word 0x4A4C2012
679
- MVMVA 1, 2, 0, 1, 0
693
+ mvmva 1, 2, 0, 1, 0
680
694
  .endm
681
695
 
682
696
  /* lev1bk - 0x4A4CA012 v1 * color matrix + bk vector */
683
697
  .macro lev1bk
684
698
  # .word 0x4A4CA012
685
- MVMVA 1, 2, 1, 1, 0
699
+ mvmva 1, 2, 1, 1, 0
686
700
  .endm
687
701
 
688
702
  /* lev2bk - 0x4A4D2012 v2 * color matrix + bk vector */
689
703
  .macro lev2bk
690
704
  # .word 0x4A4D2012
691
- MVMVA 1, 2, 2, 1, 0
705
+ mvmva 1, 2, 2, 1, 0
692
706
  .endm
693
707
 
694
708
  /* leirbk - 0x4A4DA012 ir * color matrix + bk vector */
695
709
  .macro leirbk
696
710
  # .word 0x4A4DA012
697
- MVMVA 1, 2, 3, 1, 0
711
+ mvmva 1, 2, 3, 1, 0
698
712
  .endm
699
713
 
700
714
  /* sqr12 - 0x4AA80428 square of ir 1,19,12 */
701
715
  # .macro sqr12
702
716
  # # .word 0x4AA80428
703
- # SQR 1
717
+ # sqr 1
704
718
  # .endm
705
719
 
706
- /* sqr0 - 0x4AA80428 square of ir 1,31, 0 */
720
+ /* sqr0 - 0x4AA00428 square of ir 1,31, 0 */
707
721
  # .macro sqr0
708
- # # .word 0x4AA80428
709
- # SQR 1
722
+ # # .word 0x4AA00428
723
+ # sqr 0
710
724
  # .endm
711
725
 
712
726
  /* op12 - 0x4B78000C outer product 1,19,12 */
713
727
  .macro op12
714
728
  # .word 0x4B78000C
715
- OP 1
729
+ op 1
716
730
  .endm
717
731
 
718
732
  /* op0 - 0x4B70000C outer product 1,31, 0 */
719
733
  .macro op0
720
734
  # .word 0x4B70000C
721
- OP 0
735
+ op 0
722
736
  .endm
723
737
 
724
738
  /* gpf12 - 0x4B98003D general purpose interpolation 1,19,12 */
725
739
  .macro gpf12
726
740
  # .word 0x4B98003D
727
- GPF 1
741
+ gpf 1
728
742
  .endm
729
743
 
730
744
  /* gpf0 - 0x4B90003D general purpose interpolation 1,31, 0 */
731
745
  .macro gpf0
732
746
  # .word 0x4B90003D
733
- GPF 0
747
+ gpf 0
734
748
  .endm
735
749
 
736
750
  /* gpl12 - 0x4BA8003E general purpose interpolation 1,19,12 */
737
751
  .macro gpl12
738
752
  # .word 0x4BA8003E
739
- GPL 1
753
+ gpl 1
740
754
  .endm
741
755
 
742
756
  /* gpl0 - 0x4BA0003E general purpose interpolation 1,31, 0 */
743
757
  .macro gpl0
744
758
  # .word 0x4BA0003E
745
- GPL 0
759
+ gpl 0
746
760
  .endm
761
+
762
+ .endif
747
763
  """
748
764
 
749
765
  _write("include/gte_macros.inc", gte_macros)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: splat64
3
- Version: 0.36.0
3
+ Version: 0.36.2
4
4
  Summary: A binary splitting tool to assist with decompilation and modding projects
5
5
  Project-URL: Repository, https://github.com/ethteck/splat
6
6
  Project-URL: Issues, https://github.com/ethteck/splat/issues
@@ -76,7 +76,7 @@ The brackets corresponds to the optional dependencies to install while installin
76
76
  If you use a `requirements.txt` file in your repository, then you can add this library with the following line:
77
77
 
78
78
  ```txt
79
- splat64[mips]>=0.36.0,<1.0.0
79
+ splat64[mips]>=0.36.2,<1.0.0
80
80
  ```
81
81
 
82
82
  ### Optional dependencies
@@ -1,4 +1,4 @@
1
- splat/__init__.py,sha256=s7EjnCDYNumj0mjJ61zphGBrpzgBbAehfamCJ9R0EJ8,291
1
+ splat/__init__.py,sha256=D9mhFw3srVPyKi4iH1-XvkWNLiBV8-ByL6aIP6Ylrww,291
2
2
  splat/__main__.py,sha256=T333dHDgr-2HYYhtARnYMEjdECnYiNIKfcXDD99o22A,732
3
3
  splat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  splat/disassembler/__init__.py,sha256=IubLMnm_F5cZ7WUPBfk1VJ7vdj6i1if5GG6RBvEoBEA,226
@@ -17,8 +17,8 @@ splat/scripts/capy.py,sha256=svbOfLO34-QN3xLiBy9vk2RGs_To8TWMWEKBw6yx2xQ,3674
17
17
  splat/scripts/create_config.py,sha256=ZQrqdewjR2poVhlvoa0CVZMfr9vnupYGouaAn2MLph4,11783
18
18
  splat/scripts/split.py,sha256=081pZYN34iriEhMmDBDxxLrDkSKkAksHJydzQ0VAEGk,21933
19
19
  splat/segtypes/__init__.py,sha256=-upUw_4JGQtvyp6IfTMzOq_CK3xvVaT_0K0_EipHyOo,208
20
- splat/segtypes/linker_entry.py,sha256=oTpt9Iw9ybrmwrkacyH5RYzj01wGTT7vjeE3xE1Og38,24908
21
- splat/segtypes/segment.py,sha256=-wc5xpWMN8AO8S3rrtibJgw0MMk2Dm1lZSI8dQj-H20,30625
20
+ splat/segtypes/linker_entry.py,sha256=7N3Z09fUTnoi3GIzpKRTqrhElU5QmvsL_l4UNznr1Uw,24916
21
+ splat/segtypes/segment.py,sha256=XoS1E51zQKA2MPyTghkxjzTJU4zQ86fslY9WvbQTGa0,30629
22
22
  splat/segtypes/common/__init__.py,sha256=mnq0acScilSCCo6q2PvkDk0Or3V8qitA7I8QMVw8haI,631
23
23
  splat/segtypes/common/asm.py,sha256=k3p4vgbQJP40iyTgQkIci1j3CpKkWksqoWBx2Pb2oh8,703
24
24
  splat/segtypes/common/asmtu.py,sha256=C52kKh-8YeDHu0EucEfQ-tQMtDgfKfwAJ6wwiW6nOBU,354
@@ -80,7 +80,7 @@ splat/util/cache_handler.py,sha256=N0SggmvYwh0k-0fngHXoHG1CosC2rCsnlCTDsG8z5aE,1
80
80
  splat/util/color.py,sha256=FSmy0dAQJ9FzRBc99Yt4kBEyB62MC_YiVkqoWgPMsRU,371
81
81
  splat/util/compiler.py,sha256=uXShMm49380ENecSFlsi75LWI45yakWkExZX8NT5pOU,1778
82
82
  splat/util/conf.py,sha256=aM6O2QikosjL95pCxI2FcCxrwDsLP8T8sRf2Uev_Pac,3236
83
- splat/util/file_presets.py,sha256=eOoVkLIgz1txIw9gAF75Bm6qllqNZiccOyeSDtM8WvU,18154
83
+ splat/util/file_presets.py,sha256=whms6WHRwvVfg-PQTwao4QimvVHSxfUIUaz-qXdcEbM,18585
84
84
  splat/util/log.py,sha256=aJA1rg8IirJu1wGzjNuATHvepYvD3k5CtEyMasyJWxI,1193
85
85
  splat/util/options.py,sha256=bXFruGE-tcqsdM0nYNqf_IQIiqxFCxn7NWEo_igOZIc,31252
86
86
  splat/util/palettes.py,sha256=d3KoZnwt-zunI9eNwb3txysXg4DY3xnF0O5aQRxM4so,2920
@@ -95,8 +95,8 @@ splat/util/n64/find_code_length.py,sha256=uUoPoUORAjsAvH8oGqwnGvw6j8I_NnSrZtA-x9
95
95
  splat/util/n64/rominfo.py,sha256=s13r4pDPH9Mc43ZGpomPnLZPWchhbv0kIjDoM0B3Ong,16963
96
96
  splat/util/psx/__init__.py,sha256=kCCaR-KB1mNlIcXB4OuuSQ2zVLbWg_SnIZIUeyjeBBI,39
97
97
  splat/util/psx/psxexeinfo.py,sha256=MrxY28nes0uzpFmCz0o9JFbF8s1eQRQNOpC_82wsMVI,5725
98
- splat64-0.36.0.dist-info/METADATA,sha256=33Sj7uaKkZ2Qf_WYIdcVBcPdr46pUVMmd92Rc-HNpjQ,3830
99
- splat64-0.36.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
100
- splat64-0.36.0.dist-info/entry_points.txt,sha256=O7Xy-qNOHcI87-OQrWJ-OhRDws74SuwVb_4rtnp0eLo,52
101
- splat64-0.36.0.dist-info/licenses/LICENSE,sha256=97VMVzjG8yQvsf8NG2M9IFSbh7R8cifJnc6QK1cZqj8,1070
102
- splat64-0.36.0.dist-info/RECORD,,
98
+ splat64-0.36.2.dist-info/METADATA,sha256=a6Y5_TEjCIfrXNhXKkOuwNLLTNQj0ykLSQ1v0C5MpZM,3830
99
+ splat64-0.36.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
100
+ splat64-0.36.2.dist-info/entry_points.txt,sha256=O7Xy-qNOHcI87-OQrWJ-OhRDws74SuwVb_4rtnp0eLo,52
101
+ splat64-0.36.2.dist-info/licenses/LICENSE,sha256=97VMVzjG8yQvsf8NG2M9IFSbh7R8cifJnc6QK1cZqj8,1070
102
+ splat64-0.36.2.dist-info/RECORD,,