Basically what that means is you need to *add* lines. Not remove them ;) In the seup_*.asm file there is the CS_MENU_DIN_TABLE, which you already modified. It needs 5 extra entries for the additional 5 buttons. Like this: DIN_ENTRY CS_MENU_BUTTON_Sel6, 1, 3 ; define this if CS_MENU_DISPLAYED_ITEMS > 5 DIN_ENTRY CS_MENU_BUTTON_Sel7, 1, 2 ; define this if CS_MENU_DISPLAYED_ITEMS > 5 DIN_ENTRY CS_MENU_BUTTON_Sel8, 1, 0 ; define this if CS_MENU_DISPLAYED_ITEMS > 5 DIN_ENTRY CS_MENU_BUTTON_Sel9, 1, 1 ; define this if CS_MENU_DISPLAYED_ITEMS > 5 DIN_ENTRY CS_MENU_BUTTON_Sel10, 2, 7 ; define this if CS_MENU_DISPLAYED_ITEMS > 5[/code] Just set the SR# and Pin# like you did with the other buttons and you're all set to go.