Hello,
You will see from the simplified schematic shown in the datasheet (or reference manual), that the KBI pins are simply ORed together to strobe a single latch (and assuming edge triggered only operation). This means that, if a second keypress should occur, even if the latch has already been cleared from within the ISR, there cannot be another edge to re-activate the latch until after the first key has been released, and then the next keypress occurs. Alternatively, the first input may be temporarily disabled from KBI so that further keypresses can be detected.
For level sensitive operation, if the first input is disabled so it does not trigger a further interrupt, and then the latch is cleared, if any other input should then be active, the new event would cause a new KB interrupt after the current ISR exits.
As Peg has already suggested, if the second keypress is already active when the port status is read to determine the interrupt source for the first event, the two keypresses must be treated as "simultaneous". So probably no real advantage to use level sensitive operation.
Regards,
Mac