Arduino Due System_init file

Hi all,
I am using arduino due in my project.I am using arduino ide 2.0.1 in which i am unable to find hardware folder.i checked arduino installation path also.i want to have a look at system_init file of arduino due.

i am interested to external oscillator selection and PLLA registers.
i want to know how system initialization happens.

There is no such thing as a system_init file.

Take a look at the datasheet section 22. It describes what happens at boot-up inside the MCU.

Reset_handler calls main()
main() calls init() in variants/arduino_due_x/variant.cpp
init() calls SystemInit() (which is defined/recommended by CMSIS)