Based on the information provided, it seems you are looking for a ROM-based USB HID Keyboard example for the LPC54114. While there may not be a specific example for this exact use case, there are several resources and examples that could be adapted to suit your needs.
For instance, the LPCOpen library for the LPC1769 includes a USB composite device demo that sets up a USB composite device consisting of HID and CDC class. This example could be adapted for the LPC54114.
Another useful resource is the MCUXpresso SDK, which includes a USB mouse example. While this is not a keyboard example, the principles of setting up a USB HID device would be similar.
Finally, the LPCOpen demo code usbd_rom_dfu_composite included in lpcopen_3_02_lpcxpresso_xpresso1837 shows how to use the USBD ROM stack to create a composite USB device. This could be a useful starting point for creating a composite device that includes a HID keyboard.
Please note that creating a composite USB device that includes a HID keyboard will require a good understanding of the USB protocol and the specific requirements of your project. It may be beneficial to use a USB Sniffer to debug any issues that arise during development.