From reply MMA - I understand what:
If both ADC enable what interrupts at the same time, then you will can do it:
#define BSP_IRQ_ADC 10
if(IRQSTATUS & (1<<BSP_IRQ_ADC)){ // interrupt to ADC
ulADC1Result = ADC1DAT; // Read ADC1
ulADC0Result = ADC0DAT; //Read ADC0
}
But ADC0DAT need read last, else you will not get ulADC1Result.