~ubuntu-branches/ubuntu/utopic/gputils/utopic

« back to all changes in this revision

Viewing changes to gpasm/lst.h

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Tardieu
  • Date: 2002-01-21 11:14:50 UTC
  • Revision ID: james.westby@ubuntu.com-20020121111450-rayvyl8jzft0ninr
Tags: upstream-0.10.0
ImportĀ upstreamĀ versionĀ 0.10.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ".LST" file output for gpasm
 
2
   Copyright (C) 1998,1999,2000,2001 James Bowman, Craig Franklin
 
3
 
 
4
This file is part of gputils.
 
5
 
 
6
gputils is free software; you can redistribute it and/or modify
 
7
it under the terms of the GNU General Public License as published by
 
8
the Free Software Foundation; either version 2, or (at your option)
 
9
any later version.
 
10
 
 
11
gputils is distributed in the hope that it will be useful,
 
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
GNU General Public License for more details.
 
15
 
 
16
You should have received a copy of the GNU General Public License
 
17
along with gputils; see the file COPYING.  If not, write to
 
18
the Free Software Foundation, 59 Temple Place - Suite 330,
 
19
Boston, MA 02111-1307, USA.  */
 
20
 
 
21
#ifndef __LST_H__
 
22
#define __LST_H__
 
23
 
 
24
void lst_line(char *line);
 
25
void lst_throw(void);
 
26
void lst_init(void);
 
27
void lst_memory_map(MemBlock *m);
 
28
void lst_close(void);
 
29
void lst_format_line(char *line, int value);
 
30
 
 
31
void lst_symbol_table(struct symbol_table *);
 
32
void lst_defines_table(struct symbol_table *);
 
33
 
 
34
#endif