~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/openbios/packages/xcoff-loader.c

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *       <xcoff-loader.c>
 
4
 *
 
5
 *       XCOFF file loader
 
6
 *
 
7
 *   Copyright (C) 2009 Laurent Vivier (Laurent@vivier.eu)
 
8
 *
 
9
 *   from original XCOFF loader by Steven Noonan <steven@uplinklabs.net>
 
10
 *
 
11
 *   This program is free software; you can redistribute it and/or
 
12
 *   modify it under the terms of the GNU General Public License
 
13
 *   version 2
 
14
 *
 
15
 */
 
16
 
 
17
#include "config.h"
 
18
#include "libopenbios/bindings.h"
 
19
#include "libopenbios/xcoff_load.h"
 
20
#include "packages.h"
 
21
 
 
22
DECLARE_NODE(xcoff_loader, INSTALL_OPEN, 0, "+/packages/xcoff-loader" );
 
23
 
 
24
NODE_METHODS( xcoff_loader ) = {
 
25
        { "init-program", xcoff_init_program },
 
26
};
 
27
 
 
28
void xcoff_loader_init( void )
 
29
{
 
30
        REGISTER_NODE( xcoff_loader );
 
31
}