'Is there any way to run 32-bit .ELF files that call for .bin Files?

The Lexibook TV Games/Yeno 200-in-1 Console has a large set of 32-bit games. On the MicroSD Card, the 32-bit games are a set of folders with one .elf file, and a folder of many many .bin files. My question is, is there any type of way to run these properly? Opening the .elf files in online viewers show the files called upon, and the beginning is as follows:

ELF header
==========

Name           Offset         NumValue            Value          
EI_MAG:        0x00000000     0x7F454C46          ELF
EI_CLASS       0x00000004     0x01                32 BIT
EI_DATA        0x00000005     0x01                DATA2LSB (Little-Endian)
EI_VERSION     0x00000006     0x01                EV_CURRENT
EI_OSABI       0x00000007     0x00                UNIX System V ABI
EI_OSABIVER    0x00000008     0x00                
E_TYPE         0x00000010     0x0002              ET_EXEC (Executable file)
E_MACHINE      0x00000012     0x0087              Unknown
E_VERSION      0x00000014     0x00000001          EV_CURRENT
E_ENTRY        0x00000018     0xA0081000          
E_PHOFF        0x0000001C     0x00000034          
E_SHOFF        0x00000020     0x00266A18          
E_FLAGS        0x00000024     0x00070000          
E_EHSIZE       0x00000028     0x0034              
E_PHENTSIZE    0x0000002A     0x0020              
E_PHNUM        0x0000002C     0x0001              
E_SHENTSIZE    0x0000002E     0x0028              
E_SHNUM        0x00000030     0x001D              
E_SHSTRNDX     0x00000032     0x001A              


Program header tables
=====================

Type                Offset              VAddr               PAddr               FileSz              MemSz               Align               Flags               
PT_LOAD             0x00000000          0xA0080000          0xA0080000          0x001DE034          0x0025EB20          0x00008000          Execute|Write|Read  

"UNIX System V ABI" Is written, which may be info that's important. P.S. - Sorry if my question isn't very clear, I don't know much about this kind of stuff. Thank you!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source