summaryrefslogtreecommitdiffstats
path: root/qemu/roms/SLOF/clients/net-snk/kernel/crt0.c
blob: a292273b0a6b2b60043eb9428c88fd939b90f567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/******************************************************************************
 * Copyright (c) 2004, 2008 IBM Corporation
 * All rights reserved.
 * This program and the accompanying materials
 * are made available under the terms of the BSD License
 * which accompanies this distribution, and is available at
 * http://www.opensource.org/licenses/bsd-license.php
 *
 * Contributors:
 *     IBM Corporation - initial implementation
 *****************************************************************************/

#include <stdlib.h>
#include <string.h>

extern int main (int, char**);
extern int callback (int, char **);

int _start(char *arg_string, long len);
unsigned long callback_entry(void *base, unsigned long len);


#define MAX_ARGV 10
static int
gen_argv(const char *arg_string, int len, char* argv[])
{
  const char *str, *str_end, *arg_string_end = arg_string + len;
  int i;

  str = arg_string;
  for (i = 0; i < MAX_ARGV; i++)
    {
      str_end = str;

      while((*str_end++ != ' ') && (str_end <= arg_string_end));

      argv[i] = malloc(str_end-str);

      memcpy (argv[i], str, str_end-str-1);
      argv[i][str_end-str-1] = '\0';
      str = str_end-1;
      while(*(++str) == ' ');
      if (str >= arg_string_end)
	break;
    }
  return i+1;
}



int
_start(char * arg_string, long len)
{
    int rc;
    int argc;
    char* argv[MAX_ARGV];

    argc = gen_argv(arg_string, len, argv);

    rc = main(argc, argv);

    return rc;
}

/*
 * Takes a Forth representation of a string and generates an argument array,
 * then calls callback().
 */
unsigned long
callback_entry(void *base, unsigned long len) {
	char *argv[MAX_ARGV];
	int argc;

	argc = gen_argv(base, len, argv);

	return (callback(argc, argv));
}