~ubuntu-branches/ubuntu/quantal/gnusim8085/quantal

« back to all changes in this revision

Viewing changes to src/gui-view.c

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2011-02-21 00:01:55 UTC
  • mfrom: (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110221000155-8k286v0kurbve3fp
Tags: 1.3.7-1
* New upstream release.
* debian/control
  - Update standards version to 3.9.1.
  - Reduce debhelper version required to 5 as no dh7 features are used.
  - Remove autotools-dev build-dep. Not needed anymore.
* debian/copyright
  - Update as per latest source.
* debian/rules
  - Exclude asm-guide.txt from compression as it is loaded by application.
* debian/source/format
  - Specify 1.0 source format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
  Copyright (C) 2003  Sridhar Ratnakumar <srid@nearfar.org>
 
2
  Copyright (C) 2003  Sridhar Ratnakumar <sridhar.ratna@gmail.com>
3
3
        
4
4
  This file is part of GNUSim8085.
5
5
 
15
15
 
16
16
  You should have received a copy of the GNU General Public License
17
17
  along with GNUSim8085; if not, write to the Free Software
18
 
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
  Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
 
19
  02110-1301, USA.
19
20
*/
20
21
 
21
22
#include "gui-view.h"
23
24
#include "asm-source.h"
24
25
#include "gui-list-data.h"
25
26
#include "gui-list-stack.h"
 
27
#include "gui-list-memory.h"
 
28
#include "gui-list-io.h"
26
29
#include "asm-ds-symtable.h"
27
30
 
28
31
typedef struct
264
267
  /* update data, stack lists */
265
268
  gui_view_update_data ();
266
269
  gui_view_update_stack ();
 
270
  gui_list_memory_update ();
 
271
  gui_list_io_update ();
267
272
}