~ubuntu-branches/ubuntu/trusty/libticalcs/trusty-proposed

« back to all changes in this revision

Viewing changes to src/romdump_8x/data.asm

  • Committer: Package Import Robot
  • Author(s): Andreas B. Mundt
  • Date: 2013-08-27 19:58:21 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20130827195821-biurlicyqb65gj3g
Tags: 1.1.8+dfsg2-2
* Provide original upstream source, but patch away pre-compiled
  binaries to be policy-compliant.
* Remove unnecessary dependency on 'autopoint', use autoreconf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;;; -*- TI-Asm -*-
 
2
 
 
3
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
4
;;;
 
5
;;; TI-73/82/83/83+/84+/85/86 ROM Dumper
 
6
;;;
 
7
;;; Copyright (c) 2012 Benjamin Moody
 
8
;;;
 
9
;;; This program is free software; you can redistribute it and/or modify
 
10
;;; it under the terms of the GNU General Public License as published by
 
11
;;; the Free Software Foundation; either version 2 of the License, or
 
12
;;; (at your option) any later version.
 
13
;;;
 
14
;;; This program is distributed in the hope that it will be useful,
 
15
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
;;; GNU General Public License for more details.
 
18
;;;
 
19
;;; You should have received a copy of the GNU General Public License
 
20
;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
;;;
 
22
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
23
 
 
24
DumpingROMString:       db "Dumping ROM...", 0
 
25
                        EXIT_KEY_STR
 
26
                        db " to cancel", 0
 
27
 
 
28
ErrorString:            db "Errors:", 0
 
29
 
 
30
KString:                db "0K of "
 
31
 
 
32
 #if CALC_ROM_SIZE == 512
 
33
                        db "512K"
 
34
ROMSize:                dw 0000h, 0008h
 
35
 #endif
 
36
 
 
37
 #if CALC_ROM_SIZE == 128
 
38
                        db "128K"
 
39
ROMSize:                dw 0000h, 0002h
 
40
 #endif
 
41
 
 
42
 #if CALC_ROM_SIZE == 256
 
43
                        db "256K"
 
44
ROMSize:                dw 0000h, 0004h
 
45
 #endif
 
46
 
 
47
 #if CALC_ROM_SIZE == 0
 
48
ROMSize:                dw 0000h, 0008h
 
49
 #endif