File: writeemu.c

package info (click to toggle)
linux86 0.16.21-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,072 kB
  • sloc: ansic: 66,757; asm: 6,154; makefile: 1,374; sh: 703
file content (20 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * This uses a special version of writebin for bug compatibility with
 * the old bin86 package.
 *
 * This _should_ be replaced by a function that writes out a as86 object
 * but then it would completely **** up dosemu compiles.
 *
 * NOTE: A some time I intend to replace this with a routine that generates
 *       an as86 object file.
 */

#undef  A_OUT_INCL
#define A_OUT_INCL		"rel_aout.h"
#define BSD_A_OUT		1
#define FILEHEADERLENGTH	32
#define ELF_SYMS		0

#define FUNCNAME		write_dosemu

#include "writebin.c"