• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

READMEH A D11-Nov-2020487 118

nop-arc.asmH A D11-Nov-202035 54

nop-bfin.asmH A D11-Nov-202035 54

nop-hppa64.asmH A D11-Nov-202029 54

nop-ia64.asmH A D11-Nov-202037 54

nop-mips.asmH A D11-Nov-202035 54

nop-mips64.asmH A D11-Nov-202035 54

nop-osx.asmH A D11-Nov-202031 54

nop.asmH A D11-Nov-202033 54

README

1nop.asm is the file to be compiled in order to obtain dummy executable for a selected arch.
2nop-XXX.asm are modified version of nop.asm in order to respond to the requests of the as compiler of the architecture XXXX.
3
4If you want to generate a new executable for the OS XXXX, on CPU arch YYY with endianess ZZZ you can use a cross compiler as shown:
5
6cd cowrie/data/arch/src
7cross-as nop.asm
8cross-ld a.out -o XXXX-YYYY-ZZZ
9cross-strip -s XXXX-YYYY-ZZZ
10mv XXXX-YYYY-ZZZ ../XXXX-YYYY-ZZZ
11