├── .gitignore ├── LICENSE ├── Makefile ├── Notes.md ├── README.md ├── bios ├── custom-processing-unit.c ├── dumps │ ├── SMM.txt │ ├── imms.txt │ ├── msrs.txt │ └── rom.txt ├── efi-mp.h ├── exceptions.h ├── experiments.h ├── glm-intel-ucode │ ├── 06-5c-09 │ ├── 06-5c-09.h │ ├── 06-5c-0a │ └── 06-5c-0a.h ├── goldmont_core_perf_counters.h ├── goldmont_core_v13.tsv ├── raw_msr.h ├── raw_perf.h ├── traces │ ├── cld_std_cld.txt │ ├── cld_std_cld_trace.txt │ ├── cpuid_80000002.txt │ ├── cpuid_80000002_trace.txt │ ├── denormal_fp.txt │ ├── denormal_fp_trace.txt │ ├── int1.txt │ ├── int1_trace.txt │ ├── int3.txt │ ├── int3_trace.txt │ ├── iretq_trace.txt │ ├── popa.txt │ ├── popa_trace.txt │ ├── rdmsr_0017.txt │ ├── rdmsr_0017_trace.txt │ ├── rdmsr_0x29_trace.txt │ ├── rdmsr_0x2a_trace.txt │ ├── read_dr0.txt │ ├── read_dr0_trace.txt │ ├── syscall.txt │ ├── syscall_trace.txt │ ├── trigger_dr0.txt │ ├── trigger_dr0_trace.txt │ ├── ucode_update.txt │ ├── ucode_update_trace.txt │ ├── ud2.txt │ ├── ud2_trace.txt │ ├── verw.txt │ ├── verw_trace.txt │ ├── write_dr0.txt │ ├── write_dr0_trace.txt │ └── wrmsr_0x1b_trace.txt ├── ucode_dump.h └── ucode_patches │ ├── condhwbp.h │ ├── condhwbp.u │ ├── ctdiv.h │ ├── ctdiv.u │ ├── dump_smm.h │ ├── dump_smm.u │ ├── fastbp.h │ ├── fastbp.u │ ├── get_value_and_resume.h │ ├── get_value_and_resume.u │ ├── ldat_read.h │ ├── ldat_read.u │ ├── match_patch_hook.h │ ├── match_patch_hook.u │ ├── match_patch_init.h │ ├── match_patch_init.u │ ├── match_patch_init_glm_new.h │ ├── match_patch_init_glm_new.u │ ├── msr2cr_dump.h │ ├── msr2cr_dump.u │ ├── pac_sign.h │ ├── pac_sign.u │ ├── pac_sign_weak.h │ ├── pac_sign_weak.u │ ├── pac_verify.h │ ├── pac_verify.u │ ├── pac_verify_weak.h │ ├── pac_verify_weak.u │ ├── time_access_hook.h │ ├── time_access_hook.u │ ├── trace_and_resume.h │ ├── trace_and_resume.u │ ├── ucode_patch.h │ └── ucode_patch.u ├── ghidra-processor-module ├── .gitattributes ├── .gitignore ├── LICENSE ├── Module.manifest ├── README.md ├── bin │ ├── README.txt │ ├── help │ │ ├── TOC_Source.xml │ │ ├── shared │ │ │ └── Frontpage.css │ │ └── topics │ │ │ └── x86_ucode │ │ │ └── help.html │ └── images │ │ └── README.txt ├── build.gradle ├── data │ ├── README.txt │ ├── buildLanguage.xml │ ├── languages │ │ ├── x86ucode.cspec │ │ ├── x86ucode.ldefs │ │ ├── x86ucode.pspec │ │ └── x86ucode.slaspec │ └── sleighArgs.txt ├── extension.properties ├── ghidra_scripts │ └── README.txt ├── images │ ├── Screenshot1.png │ └── Screenshot2.png ├── lib │ └── txt2ghidra.py ├── os │ ├── linux64 │ │ └── README.txt │ ├── osx64 │ │ └── README.txt │ └── win64 │ │ └── README.txt └── src │ ├── main │ ├── help │ │ └── help │ │ │ ├── TOC_Source.xml │ │ │ ├── shared │ │ │ └── Frontpage.css │ │ │ └── topics │ │ │ └── x86_ucode │ │ │ └── help.html │ └── resources │ │ └── images │ │ └── README.txt │ └── test │ └── java │ └── README.test.txt ├── images └── cpu_logo.svg ├── slides.pdf ├── uasm-lib ├── 0x000506C9 │ ├── ms_array0.txt │ ├── ms_array1.txt │ ├── ms_array2.txt │ ├── ms_array3.txt │ └── ms_array4.txt ├── 0x000506CA │ ├── ms_array0.txt │ ├── ms_array1.txt │ ├── ms_array2.txt │ ├── ms_array3.txt │ └── ms_array4.txt ├── custom_sha.py ├── hard_imm.txt ├── labels.csv ├── opcodes.txt ├── parse_all_ucodes.py ├── uasm.py └── ucode_parser.py └── ucode_collection ├── cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin ├── cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.dec ├── cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.patch_0001.txt ├── cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.patch_026e.txt ├── cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.txt ├── cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin ├── cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.dec ├── cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.patch_0001.txt ├── cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.patch_01ee.txt ├── cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.patch_2d0e.txt ├── cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.txt ├── cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin ├── cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.dec ├── cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.patch_0001.txt ├── cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.patch_0276.txt ├── cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.txt ├── cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin ├── cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.dec ├── cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.patch_0001.txt ├── cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.patch_02ae.txt ├── cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.txt ├── cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin ├── cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.dec ├── cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.patch_0001.txt ├── cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.patch_01ee.txt ├── cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.patch_2e8c.txt ├── cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.txt ├── cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin ├── cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.dec ├── cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.patch_0001.txt ├── cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.patch_01ee.txt ├── cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.patch_2f34.txt ├── cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.txt ├── cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin ├── cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.dec ├── cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.patch_0001.txt ├── cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.patch_01ee.txt ├── cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.patch_2f34.txt ├── cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.txt ├── cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin ├── cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.dec ├── cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.patch_0001.txt ├── cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.patch_01ee.txt ├── cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.patch_2f34.txt ├── cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.txt ├── cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin ├── cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.dec ├── cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.patch_0001.txt ├── cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.patch_01ee.txt ├── cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.patch_2f9c.txt ├── cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.txt ├── cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin ├── cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.dec ├── cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.patch_0001.txt ├── cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.patch_02b1.txt ├── cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.patch_307f.txt ├── cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.txt ├── cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin ├── cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.dec ├── cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.patch_0001.txt ├── cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.patch_041c.txt ├── cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.patch_32f2.txt ├── cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.txt ├── cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin ├── cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.dec ├── cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.patch_0001.txt ├── cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.patch_021b.txt ├── cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.txt ├── cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin ├── cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.dec ├── cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.patch_0001.txt ├── cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.patch_01bb.txt ├── cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.patch_2df9.txt ├── cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.txt ├── cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin ├── cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.dec ├── cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.patch_0001.txt ├── cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.patch_01bb.txt ├── cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.patch_2ea1.txt ├── cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.txt ├── cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin ├── cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.dec ├── cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.patch_0001.txt ├── cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.patch_01bb.txt ├── cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.patch_2ef1.txt ├── cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.txt ├── cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin ├── cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.dec ├── cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.patch_0001.txt ├── cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.patch_01bb.txt ├── cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.patch_2ef1.txt ├── cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.txt ├── cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin ├── cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.dec ├── cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.patch_0001.txt ├── cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.patch_01bb.txt ├── cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.patch_2ef9.txt ├── cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.txt ├── cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin ├── cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.dec ├── cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.patch_0001.txt ├── cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.patch_01bb.txt ├── cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.patch_2f09.txt ├── cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.txt ├── cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin ├── cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.dec ├── cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.patch_0001.txt ├── cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.patch_027e.txt ├── cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.patch_2fcc.txt ├── cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.txt ├── cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin ├── cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.dec ├── cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.patch_0001.txt ├── cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.patch_0404.txt ├── cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.patch_3252.txt ├── cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.txt ├── cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin ├── cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.dec ├── cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.patch_0018.txt ├── cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.patch_03a1.txt ├── cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.txt ├── cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin ├── cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.dec ├── cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.patch_0001.txt ├── cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.patch_025e.txt ├── cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.txt ├── cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin ├── cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.dec ├── cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.patch_0001.txt ├── cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.patch_01be.txt ├── cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.patch_1768.txt ├── cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.txt ├── cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin ├── cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.dec ├── cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.patch_0001.txt ├── cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.patch_01be.txt ├── cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.patch_197f.txt ├── cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.txt ├── cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin ├── cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.dec ├── cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.patch_0001.txt ├── cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.patch_01f1.txt ├── cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.patch_19b2.txt ├── cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.txt ├── cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin ├── cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.dec ├── cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.patch_0001.txt ├── cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.patch_01f1.txt ├── cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.patch_1aba.txt ├── cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.txt ├── cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin ├── cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.dec ├── cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.patch_0001.txt ├── cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.patch_01f1.txt ├── cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.patch_1aba.txt ├── cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.txt ├── cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin ├── cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.dec ├── cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.patch_0001.txt ├── cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.patch_026c.txt ├── cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.patch_1c45.txt ├── cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.txt ├── m_03_506ca_00000022.bin ├── m_03_506ca_00000022.bin.dec ├── m_03_506ca_00000022.bin.patch_0001.txt ├── m_03_506ca_00000022.bin.patch_0299.txt ├── m_03_506ca_00000022.bin.patch_2fe7.txt └── m_03_506ca_00000022.bin.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/Makefile -------------------------------------------------------------------------------- /Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/Notes.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/README.md -------------------------------------------------------------------------------- /bios/custom-processing-unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/custom-processing-unit.c -------------------------------------------------------------------------------- /bios/dumps/SMM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/dumps/SMM.txt -------------------------------------------------------------------------------- /bios/dumps/imms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/dumps/imms.txt -------------------------------------------------------------------------------- /bios/dumps/msrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/dumps/msrs.txt -------------------------------------------------------------------------------- /bios/dumps/rom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/dumps/rom.txt -------------------------------------------------------------------------------- /bios/efi-mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/efi-mp.h -------------------------------------------------------------------------------- /bios/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/exceptions.h -------------------------------------------------------------------------------- /bios/experiments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/experiments.h -------------------------------------------------------------------------------- /bios/glm-intel-ucode/06-5c-09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/glm-intel-ucode/06-5c-09 -------------------------------------------------------------------------------- /bios/glm-intel-ucode/06-5c-09.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/glm-intel-ucode/06-5c-09.h -------------------------------------------------------------------------------- /bios/glm-intel-ucode/06-5c-0a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/glm-intel-ucode/06-5c-0a -------------------------------------------------------------------------------- /bios/glm-intel-ucode/06-5c-0a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/glm-intel-ucode/06-5c-0a.h -------------------------------------------------------------------------------- /bios/goldmont_core_perf_counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/goldmont_core_perf_counters.h -------------------------------------------------------------------------------- /bios/goldmont_core_v13.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/goldmont_core_v13.tsv -------------------------------------------------------------------------------- /bios/raw_msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/raw_msr.h -------------------------------------------------------------------------------- /bios/raw_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/raw_perf.h -------------------------------------------------------------------------------- /bios/traces/cld_std_cld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/cld_std_cld.txt -------------------------------------------------------------------------------- /bios/traces/cld_std_cld_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/cld_std_cld_trace.txt -------------------------------------------------------------------------------- /bios/traces/cpuid_80000002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/cpuid_80000002.txt -------------------------------------------------------------------------------- /bios/traces/cpuid_80000002_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/cpuid_80000002_trace.txt -------------------------------------------------------------------------------- /bios/traces/denormal_fp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/denormal_fp.txt -------------------------------------------------------------------------------- /bios/traces/denormal_fp_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/denormal_fp_trace.txt -------------------------------------------------------------------------------- /bios/traces/int1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/int1.txt -------------------------------------------------------------------------------- /bios/traces/int1_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/int1_trace.txt -------------------------------------------------------------------------------- /bios/traces/int3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/int3.txt -------------------------------------------------------------------------------- /bios/traces/int3_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/int3_trace.txt -------------------------------------------------------------------------------- /bios/traces/iretq_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/iretq_trace.txt -------------------------------------------------------------------------------- /bios/traces/popa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/popa.txt -------------------------------------------------------------------------------- /bios/traces/popa_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/popa_trace.txt -------------------------------------------------------------------------------- /bios/traces/rdmsr_0017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/rdmsr_0017.txt -------------------------------------------------------------------------------- /bios/traces/rdmsr_0017_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/rdmsr_0017_trace.txt -------------------------------------------------------------------------------- /bios/traces/rdmsr_0x29_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/rdmsr_0x29_trace.txt -------------------------------------------------------------------------------- /bios/traces/rdmsr_0x2a_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/rdmsr_0x2a_trace.txt -------------------------------------------------------------------------------- /bios/traces/read_dr0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/read_dr0.txt -------------------------------------------------------------------------------- /bios/traces/read_dr0_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/read_dr0_trace.txt -------------------------------------------------------------------------------- /bios/traces/syscall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/syscall.txt -------------------------------------------------------------------------------- /bios/traces/syscall_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/syscall_trace.txt -------------------------------------------------------------------------------- /bios/traces/trigger_dr0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/trigger_dr0.txt -------------------------------------------------------------------------------- /bios/traces/trigger_dr0_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/trigger_dr0_trace.txt -------------------------------------------------------------------------------- /bios/traces/ucode_update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/ucode_update.txt -------------------------------------------------------------------------------- /bios/traces/ucode_update_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/ucode_update_trace.txt -------------------------------------------------------------------------------- /bios/traces/ud2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/ud2.txt -------------------------------------------------------------------------------- /bios/traces/ud2_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/ud2_trace.txt -------------------------------------------------------------------------------- /bios/traces/verw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/verw.txt -------------------------------------------------------------------------------- /bios/traces/verw_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/verw_trace.txt -------------------------------------------------------------------------------- /bios/traces/write_dr0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/write_dr0.txt -------------------------------------------------------------------------------- /bios/traces/write_dr0_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/write_dr0_trace.txt -------------------------------------------------------------------------------- /bios/traces/wrmsr_0x1b_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/traces/wrmsr_0x1b_trace.txt -------------------------------------------------------------------------------- /bios/ucode_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_dump.h -------------------------------------------------------------------------------- /bios/ucode_patches/condhwbp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/condhwbp.h -------------------------------------------------------------------------------- /bios/ucode_patches/condhwbp.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/condhwbp.u -------------------------------------------------------------------------------- /bios/ucode_patches/ctdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/ctdiv.h -------------------------------------------------------------------------------- /bios/ucode_patches/ctdiv.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/ctdiv.u -------------------------------------------------------------------------------- /bios/ucode_patches/dump_smm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/dump_smm.h -------------------------------------------------------------------------------- /bios/ucode_patches/dump_smm.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/dump_smm.u -------------------------------------------------------------------------------- /bios/ucode_patches/fastbp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/fastbp.h -------------------------------------------------------------------------------- /bios/ucode_patches/fastbp.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/fastbp.u -------------------------------------------------------------------------------- /bios/ucode_patches/get_value_and_resume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/get_value_and_resume.h -------------------------------------------------------------------------------- /bios/ucode_patches/get_value_and_resume.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/get_value_and_resume.u -------------------------------------------------------------------------------- /bios/ucode_patches/ldat_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/ldat_read.h -------------------------------------------------------------------------------- /bios/ucode_patches/ldat_read.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/ldat_read.u -------------------------------------------------------------------------------- /bios/ucode_patches/match_patch_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/match_patch_hook.h -------------------------------------------------------------------------------- /bios/ucode_patches/match_patch_hook.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/match_patch_hook.u -------------------------------------------------------------------------------- /bios/ucode_patches/match_patch_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/match_patch_init.h -------------------------------------------------------------------------------- /bios/ucode_patches/match_patch_init.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/match_patch_init.u -------------------------------------------------------------------------------- /bios/ucode_patches/match_patch_init_glm_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/match_patch_init_glm_new.h -------------------------------------------------------------------------------- /bios/ucode_patches/match_patch_init_glm_new.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/match_patch_init_glm_new.u -------------------------------------------------------------------------------- /bios/ucode_patches/msr2cr_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/msr2cr_dump.h -------------------------------------------------------------------------------- /bios/ucode_patches/msr2cr_dump.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/msr2cr_dump.u -------------------------------------------------------------------------------- /bios/ucode_patches/pac_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/pac_sign.h -------------------------------------------------------------------------------- /bios/ucode_patches/pac_sign.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/pac_sign.u -------------------------------------------------------------------------------- /bios/ucode_patches/pac_sign_weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/pac_sign_weak.h -------------------------------------------------------------------------------- /bios/ucode_patches/pac_sign_weak.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/pac_sign_weak.u -------------------------------------------------------------------------------- /bios/ucode_patches/pac_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/pac_verify.h -------------------------------------------------------------------------------- /bios/ucode_patches/pac_verify.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/pac_verify.u -------------------------------------------------------------------------------- /bios/ucode_patches/pac_verify_weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/pac_verify_weak.h -------------------------------------------------------------------------------- /bios/ucode_patches/pac_verify_weak.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/pac_verify_weak.u -------------------------------------------------------------------------------- /bios/ucode_patches/time_access_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/time_access_hook.h -------------------------------------------------------------------------------- /bios/ucode_patches/time_access_hook.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/time_access_hook.u -------------------------------------------------------------------------------- /bios/ucode_patches/trace_and_resume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/trace_and_resume.h -------------------------------------------------------------------------------- /bios/ucode_patches/trace_and_resume.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/trace_and_resume.u -------------------------------------------------------------------------------- /bios/ucode_patches/ucode_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/ucode_patch.h -------------------------------------------------------------------------------- /bios/ucode_patches/ucode_patch.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/bios/ucode_patches/ucode_patch.u -------------------------------------------------------------------------------- /ghidra-processor-module/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/.gitattributes -------------------------------------------------------------------------------- /ghidra-processor-module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/.gitignore -------------------------------------------------------------------------------- /ghidra-processor-module/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/LICENSE -------------------------------------------------------------------------------- /ghidra-processor-module/Module.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ghidra-processor-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/README.md -------------------------------------------------------------------------------- /ghidra-processor-module/bin/README.txt: -------------------------------------------------------------------------------- 1 | Java source directory to hold module-specific Ghidra scripts. 2 | -------------------------------------------------------------------------------- /ghidra-processor-module/bin/help/TOC_Source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/bin/help/TOC_Source.xml -------------------------------------------------------------------------------- /ghidra-processor-module/bin/help/shared/Frontpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/bin/help/shared/Frontpage.css -------------------------------------------------------------------------------- /ghidra-processor-module/bin/help/topics/x86_ucode/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/bin/help/topics/x86_ucode/help.html -------------------------------------------------------------------------------- /ghidra-processor-module/bin/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/bin/images/README.txt -------------------------------------------------------------------------------- /ghidra-processor-module/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/build.gradle -------------------------------------------------------------------------------- /ghidra-processor-module/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/data/README.txt -------------------------------------------------------------------------------- /ghidra-processor-module/data/buildLanguage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/data/buildLanguage.xml -------------------------------------------------------------------------------- /ghidra-processor-module/data/languages/x86ucode.cspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/data/languages/x86ucode.cspec -------------------------------------------------------------------------------- /ghidra-processor-module/data/languages/x86ucode.ldefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/data/languages/x86ucode.ldefs -------------------------------------------------------------------------------- /ghidra-processor-module/data/languages/x86ucode.pspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/data/languages/x86ucode.pspec -------------------------------------------------------------------------------- /ghidra-processor-module/data/languages/x86ucode.slaspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/data/languages/x86ucode.slaspec -------------------------------------------------------------------------------- /ghidra-processor-module/data/sleighArgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/data/sleighArgs.txt -------------------------------------------------------------------------------- /ghidra-processor-module/extension.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/extension.properties -------------------------------------------------------------------------------- /ghidra-processor-module/ghidra_scripts/README.txt: -------------------------------------------------------------------------------- 1 | Java source directory to hold module-specific Ghidra scripts. 2 | -------------------------------------------------------------------------------- /ghidra-processor-module/images/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/images/Screenshot1.png -------------------------------------------------------------------------------- /ghidra-processor-module/images/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/images/Screenshot2.png -------------------------------------------------------------------------------- /ghidra-processor-module/lib/txt2ghidra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/lib/txt2ghidra.py -------------------------------------------------------------------------------- /ghidra-processor-module/os/linux64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/os/linux64/README.txt -------------------------------------------------------------------------------- /ghidra-processor-module/os/osx64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/os/osx64/README.txt -------------------------------------------------------------------------------- /ghidra-processor-module/os/win64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/os/win64/README.txt -------------------------------------------------------------------------------- /ghidra-processor-module/src/main/help/help/TOC_Source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/src/main/help/help/TOC_Source.xml -------------------------------------------------------------------------------- /ghidra-processor-module/src/main/help/help/shared/Frontpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/src/main/help/help/shared/Frontpage.css -------------------------------------------------------------------------------- /ghidra-processor-module/src/main/help/help/topics/x86_ucode/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/src/main/help/help/topics/x86_ucode/help.html -------------------------------------------------------------------------------- /ghidra-processor-module/src/main/resources/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/src/main/resources/images/README.txt -------------------------------------------------------------------------------- /ghidra-processor-module/src/test/java/README.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ghidra-processor-module/src/test/java/README.test.txt -------------------------------------------------------------------------------- /images/cpu_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/images/cpu_logo.svg -------------------------------------------------------------------------------- /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/slides.pdf -------------------------------------------------------------------------------- /uasm-lib/0x000506C9/ms_array0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506C9/ms_array0.txt -------------------------------------------------------------------------------- /uasm-lib/0x000506C9/ms_array1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506C9/ms_array1.txt -------------------------------------------------------------------------------- /uasm-lib/0x000506C9/ms_array2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506C9/ms_array2.txt -------------------------------------------------------------------------------- /uasm-lib/0x000506C9/ms_array3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506C9/ms_array3.txt -------------------------------------------------------------------------------- /uasm-lib/0x000506C9/ms_array4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506C9/ms_array4.txt -------------------------------------------------------------------------------- /uasm-lib/0x000506CA/ms_array0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506CA/ms_array0.txt -------------------------------------------------------------------------------- /uasm-lib/0x000506CA/ms_array1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506CA/ms_array1.txt -------------------------------------------------------------------------------- /uasm-lib/0x000506CA/ms_array2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506CA/ms_array2.txt -------------------------------------------------------------------------------- /uasm-lib/0x000506CA/ms_array3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506CA/ms_array3.txt -------------------------------------------------------------------------------- /uasm-lib/0x000506CA/ms_array4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/0x000506CA/ms_array4.txt -------------------------------------------------------------------------------- /uasm-lib/custom_sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/custom_sha.py -------------------------------------------------------------------------------- /uasm-lib/hard_imm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/hard_imm.txt -------------------------------------------------------------------------------- /uasm-lib/labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/labels.csv -------------------------------------------------------------------------------- /uasm-lib/opcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/opcodes.txt -------------------------------------------------------------------------------- /uasm-lib/parse_all_ucodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/parse_all_ucodes.py -------------------------------------------------------------------------------- /uasm-lib/uasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/uasm.py -------------------------------------------------------------------------------- /uasm-lib/ucode_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/uasm-lib/ucode_parser.py -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.patch_026e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.patch_026e.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver0000000E_2017-06-06_PRD_C7BCD215.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.patch_01ee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.patch_01ee.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.patch_2d0e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.patch_2d0e.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C2_plat01_ver00000014_2018-05-11_PRD_BD3490B6.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.patch_0276.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.patch_0276.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C8_plat01_ver00000010_2016-03-04_PRD_DE6EBB18.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.patch_02ae.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.patch_02ae.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000002E_2017-11-22_PRD_2798C414.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.patch_01ee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.patch_01ee.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.patch_2e8c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.patch_2e8c.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000032_2018-05-11_PRD_2F66EBE0.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.patch_01ee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.patch_01ee.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.patch_2f34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.patch_2f34.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000036_2018-09-14_PRD_98CF60E7.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.patch_01ee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.patch_01ee.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.patch_2f34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.patch_2f34.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000038_2019-01-15_PRD_99AA67D7.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.patch_01ee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.patch_01ee.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.patch_2f34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.patch_2f34.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver0000003C_2019-07-22_PRD_5BBF33D5.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.patch_01ee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.patch_01ee.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.patch_2f9c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.patch_2f9c.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000040_2020-02-27_PRD_2FC3D618.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.patch_02b1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.patch_02b1.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.patch_307f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.patch_307f.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000044_2020-10-23_PRD_4682D493.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.patch_041c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.patch_041c.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.patch_32f2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.patch_32f2.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506C9_plat03_ver00000046_2021-05-10_PRD_EF971B58.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.patch_021b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.patch_021b.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000008_2017-11-22_PRD_32F41375.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.patch_01bb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.patch_01bb.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.patch_2df9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.patch_2df9.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000000C_2018-05-11_PRD_ACEA9DD5.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.patch_01bb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.patch_01bb.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.patch_2ea1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.patch_2ea1.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000010_2018-09-20_PRD_C2DD4FDC.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.patch_01bb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.patch_01bb.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.patch_2ef1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.patch_2ef1.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000016_2019-03-01_PRD_A1AC5A6B.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.patch_01bb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.patch_01bb.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.patch_2ef1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.patch_2ef1.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001A_2019-07-22_PRD_71479BDE.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.patch_01bb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.patch_01bb.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.patch_2ef9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.patch_2ef9.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001C_2019-08-12_PRD_D83D9090.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.patch_01bb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.patch_01bb.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.patch_2f09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.patch_2f09.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver0000001E_2020-02-27_PRD_F8A4D999.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.patch_027e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.patch_027e.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.patch_2fcc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.patch_2fcc.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000020_2020-10-23_PRD_C4E546D7.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.patch_0404.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.patch_0404.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.patch_3252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.patch_3252.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506CA_plat03_ver00000024_2021-05-10_PRD_AB75708E.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.patch_0018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.patch_0018.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.patch_03a1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.patch_03a1.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F0_plat01_ver00000010_2016-06-07_PRD_4ED9573A.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.patch_025e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.patch_025e.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000020_2017-11-22_PRD_1B275D2A.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.patch_01be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.patch_01be.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.patch_1768.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.patch_1768.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000024_2018-05-11_PRD_A1B0E19C.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.patch_01be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.patch_01be.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.patch_197f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.patch_197f.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002A_2019-02-11_PRD_40664937.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.patch_01f1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.patch_01f1.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.patch_19b2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.patch_19b2.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver0000002E_2019-03-21_PRD_4F7008D6.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.patch_01f1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.patch_01f1.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.patch_1aba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.patch_1aba.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000032_2020-03-07_PRD_6538E5EA.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.patch_01f1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.patch_01f1.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.patch_1aba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.patch_1aba.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000034_2020-10-23_PRD_1E364CDF.bin.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.dec -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.patch_026c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.patch_026c.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.patch_1c45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.patch_1c45.txt -------------------------------------------------------------------------------- /ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/cpu506F1_plat01_ver00000036_2021-05-10_PRD_60ADB6C8.bin.txt -------------------------------------------------------------------------------- /ucode_collection/m_03_506ca_00000022.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/m_03_506ca_00000022.bin -------------------------------------------------------------------------------- /ucode_collection/m_03_506ca_00000022.bin.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/m_03_506ca_00000022.bin.dec -------------------------------------------------------------------------------- /ucode_collection/m_03_506ca_00000022.bin.patch_0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/m_03_506ca_00000022.bin.patch_0001.txt -------------------------------------------------------------------------------- /ucode_collection/m_03_506ca_00000022.bin.patch_0299.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/m_03_506ca_00000022.bin.patch_0299.txt -------------------------------------------------------------------------------- /ucode_collection/m_03_506ca_00000022.bin.patch_2fe7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/m_03_506ca_00000022.bin.patch_2fe7.txt -------------------------------------------------------------------------------- /ucode_collection/m_03_506ca_00000022.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroborrello/CustomProcessingUnit/HEAD/ucode_collection/m_03_506ca_00000022.bin.txt --------------------------------------------------------------------------------