diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-01-15 10:52:44 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-01-15 10:52:44 -0500 |
commit | eeb0c8e2596edc876771e9e7ff57337a59d6128c (patch) | |
tree | a33c4f45a3a63ccca08b01261c46375f1fb1cfd3 /volk | |
parent | 568d0cafb8423f34530c94963654abea4c62801b (diff) | |
parent | 74e9f2b0bce026b7b68a2d0a3558687386fdaab5 (diff) |
Merge branch 'volkosx' of github.com:trondeau/gnuradio into volkosx
Diffstat (limited to 'volk')
-rw-r--r-- | volk/include/volk/make_proccpu_sim.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/volk/include/volk/make_proccpu_sim.py b/volk/include/volk/make_proccpu_sim.py index c75a4d5fb2..e8463f5be5 100644 --- a/volk/include/volk/make_proccpu_sim.py +++ b/volk/include/volk/make_proccpu_sim.py @@ -1,3 +1,25 @@ +#!/usr/bin/env python +# +# Copyright 2011 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# + from xml.dom import minidom def make_proccpu_sim(dom) : @@ -6,6 +28,7 @@ def make_proccpu_sim(dom) : tempstring = tempstring + "#include <volk/volk_cpu.h>\n" tempstring = tempstring + "#include <stdio.h>\n" tempstring = tempstring + "\n\n" + tempstring = tempstring + "struct VOLK_CPU volk_cpu;\n\n" tempstring = tempstring + "void test_append(char* buf, int val, char* newkey){\n"; tempstring = tempstring + " if(val==1){\n"; |