xref: /netbsd-src/external/gpl3/gdb/dist/sim/igen/gen-model.c (revision 71f621822dbfd5073a314948bec169b7bb05f7be)
14e98e3e1Schristos /* The IGEN simulator generator for GDB, the GNU Debugger.
24e98e3e1Schristos 
3*71f62182Schristos    Copyright 2002-2024 Free Software Foundation, Inc.
44e98e3e1Schristos 
54e98e3e1Schristos    Contributed by Andrew Cagney.
64e98e3e1Schristos 
74e98e3e1Schristos    This file is part of GDB.
84e98e3e1Schristos 
94e98e3e1Schristos    This program is free software; you can redistribute it and/or modify
104e98e3e1Schristos    it under the terms of the GNU General Public License as published by
114e98e3e1Schristos    the Free Software Foundation; either version 3 of the License, or
124e98e3e1Schristos    (at your option) any later version.
134e98e3e1Schristos 
144e98e3e1Schristos    This program is distributed in the hope that it will be useful,
154e98e3e1Schristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
164e98e3e1Schristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
174e98e3e1Schristos    GNU General Public License for more details.
184e98e3e1Schristos 
194e98e3e1Schristos    You should have received a copy of the GNU General Public License
204e98e3e1Schristos    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
214e98e3e1Schristos 
224e98e3e1Schristos 
234e98e3e1Schristos #include "misc.h"
244e98e3e1Schristos #include "lf.h"
254e98e3e1Schristos #include "table.h"
264e98e3e1Schristos 
274e98e3e1Schristos #include "filter.h"
284e98e3e1Schristos 
294e98e3e1Schristos #include "ld-decode.h"
304e98e3e1Schristos #include "ld-insn.h"
314e98e3e1Schristos 
324e98e3e1Schristos #include "gen-model.h"
334e98e3e1Schristos 
344e98e3e1Schristos 
354e98e3e1Schristos void
364b169a6bSchristos gen_model_h (lf *file, const insn_table *table)
374e98e3e1Schristos {
384e98e3e1Schristos   lf_print__this_file_is_empty (file, "suffering bit rot");
394e98e3e1Schristos }
404e98e3e1Schristos 
414e98e3e1Schristos 
424e98e3e1Schristos void
434b169a6bSchristos gen_model_c (lf *file, const insn_table *table)
444e98e3e1Schristos {
454e98e3e1Schristos   lf_print__this_file_is_empty (file, "suffering bit rot");
464e98e3e1Schristos }
47