Can someone give me a quick external eeprom lookup table example. I know I am missing something stupid. I'm not worried about the exact code, more the thought process.

Basically what I need to do is put the following data into eeprom

(1) 00000001,00000000,00000000,00000000
(2) 00001010,00000000,00000000,00000000
(3) 00001010,00000000,00000000,00000000
(4) 00101010,00000000,00000000,00000000
(5) 10101010,00000000,00000000,00000000
(6) 10101010,00000000,00000000,00000000
(7) 10101010,00000010,00000000,00000000
(8) 10101010,00000010,00000000,00000000
(9) 10101010,00001010,00000000,00000000
(10) 10101010,00101010,00000000,00000000

After the data is in EEPROM my program will have a variable that will store a value between (1) and (10). Based on that variable I need to go to the EEPROM and return with 4 byte sized variables.

I am having trouble understanding how to format this data in eeprom effiecently so that I can get the 4 byte size variables out in a small amount of time.

Thanks for any thoughts, hopefully I have not confused everyone.