/[VRac]/Orao.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /Orao.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 87 by dpavlin, Thu Aug 2 11:08:10 2007 UTC revision 96 by dpavlin, Thu Aug 2 13:58:26 2007 UTC
# Line 12  use List::Util qw/first/; Line 12  use List::Util qw/first/;
12  use M6502;  use M6502;
13    
14  use base qw(Class::Accessor M6502 Screen Prefs);  use base qw(Class::Accessor M6502 Screen Prefs);
15  __PACKAGE__->mk_accessors(qw(run_for));  __PACKAGE__->mk_accessors(qw(booted));
16    
17  =head1 NAME  =head1 NAME
18    
# Line 20  Orao - Orao emulator Line 20  Orao - Orao emulator
20    
21  =head1 VERSION  =head1 VERSION
22    
23  Version 0.02  Version 0.04
24    
25  =cut  =cut
26    
27  our $VERSION = '0.02';  our $VERSION = '0.04';
28    
29  =head1 SUMMARY  =head1 SUMMARY
30    
# Line 39  my @kbd_ports = ( Line 39  my @kbd_ports = (
39      0x83FE,0x83FF,      0x83FE,0x83FF,
40  );  );
41    
42    =head1 FUNCTIONS
43    
44  =head2 boot  =head2 boot
45    
46  Start emulator, open L<Screen>, load initial ROM images, and render memory  Start emulator, open L<Screen>, load initial ROM images, and render memory
# Line 55  select(STDERR); $| = 1; Line 57  select(STDERR); $| = 1;
57  sub boot {  sub boot {
58          my $self = shift;          my $self = shift;
59          warn "Orao calling upstream init\n";          warn "Orao calling upstream init\n";
60          $self->SUPER::init( $self, @_ );          $self->SUPER::init(
61                    read => sub { $self->read( @_ ) },
62                    write => sub { $self->write( @_ ) },
63            );
64    
65          warn "Orao $Orao::VERSION emulation starting\n";          warn "Orao $Orao::VERSION emulation starting\n";
66    
67            warn "emulating ", $#mem, " bytes of memory\n";
68    
69          $self->open_screen;          $self->open_screen;
70          $self->load_rom({          $self->load_rom({
71                  0x1000 => 'dump/SCRINV.BIN',                  0x1000 => 'dump/SCRINV.BIN',
# Line 119  sub boot { Line 126  sub boot {
126    
127          M6502::reset();          M6502::reset();
128    
129            $self->booted( 1 );
130  }  }
131    
132    =head2 run
133    
134    Run interactive emulation loop
135    
136      $orao->run;
137    
138    =cut
139    
140    sub run {
141            my $self = shift;
142    
143            $self->boot if ( ! $self->booted );
144            $self->loop;
145    };
146    
147    =head1 Helper functions
148    
149  =head2 load_rom  =head2 load_rom
150    
151  called to init memory and load initial rom images  called to init memory and load initial rom images
# Line 136  sub load_rom { Line 161  sub load_rom {
161    
162          foreach my $addr ( sort keys %$loaded_files ) {          foreach my $addr ( sort keys %$loaded_files ) {
163                  my $path = $loaded_files->{$addr};                  my $path = $loaded_files->{$addr};
164                  $self->load_oraoemu( $path, $addr );                  $self->load_image( $path, $addr );
165          }          }
166  }  }
167    
# Line 164  sub _write_chunk { Line 189  sub _write_chunk {
189          $self->render_mem( @mem ) if $self->show_mem;          $self->render_mem( @mem ) if $self->show_mem;
190  }  }
191    
192  =head2 load_oraoemu  =head2 load_image
193    
194  Load binary files, ROM images and Orao Emulator files  Load binary files, ROM images and Orao Emulator files
195    
196    $orao->load_oraoemu( '/path/to/file', 0x1000 );    $orao->load_image( '/path/to/file', 0x1000 );
197    
198  Returns true on success.  Returns true on success.
199    
200  =cut  =cut
201    
202  sub load_oraoemu {  sub load_image {
203          my $self = shift;          my $self = shift;
204          my ( $path, $addr ) = @_;          my ( $path, $addr ) = @_;
205    
# Line 284  sub read { Line 309  sub read {
309          my $self = shift;          my $self = shift;
310          my ($addr) = @_;          my ($addr) = @_;
311          my $byte = $mem[$addr];          my $byte = $mem[$addr];
312            confess sprintf("can't find memory at address %04x",$addr) unless defined($byte);
313          warn sprintf("# Orao::read(%04x) = %02x\n", $addr, $byte) if $self->trace;          warn sprintf("# Orao::read(%04x) = %02x\n", $addr, $byte) if $self->trace;
314    
315          # keyboard          # keyboard
# Line 363  sub write { Line 389  sub write {
389          }          }
390    
391          if ( $addr > 0xafff ) {          if ( $addr > 0xafff ) {
392                  warn sprintf "write access 0x%04x > 0xafff aborting\n", $addr;                  confess sprintf "write access 0x%04x > 0xafff aborting\n", $addr;
                 return;  
393          }          }
394    
395          $self->mmap_pixel( $addr, $byte, 0, 0 );          $self->mmap_pixel( $addr, $byte, 0, 0 );
# Line 412  my $show_R = 0; Line 437  my $show_R = 0;
437  sub cli {  sub cli {
438          my $self = shift;          my $self = shift;
439          my $a = $PC || confess "no pc?";          my $a = $PC || confess "no pc?";
440            my $run_for = 0;
441          warn $self->dump_R() if $show_R;          warn $self->dump_R() if $show_R;
442          while ( my ($line, @v) = $self->prompt( $a, $last ) ) {          while ( my ($line, @v) = $self->prompt( $a, $last ) ) {
443                  my $c = shift @v;                  my $c = shift @v;
# Line 466  __USAGE__ Line 492  __USAGE__
492                  } elsif ( $c =~ m/^l/i ) {                  } elsif ( $c =~ m/^l/i ) {
493                          my $to = shift @v || 0x1000;                          my $to = shift @v || 0x1000;
494                          $a = $to;                          $a = $to;
495                          $self->load_oraoemu( $v, $a );                          $self->load_image( $v, $a );
496                          $last = '';                          $last = '';
497                  } elsif ( $c =~ m/^s/i ) {                  } elsif ( $c =~ m/^s/i ) {
498                          $self->save_dump( $v || 'mem.dump', @v );                          $self->save_dump( $v || 'mem.dump', @v );
# Line 498  __USAGE__ Line 524  __USAGE__
524                  }                  }
525          }          }
526    
527            return $run_for;
528  }  }
529    
530  =head1 AUTHOR  =head1 AUTHOR

Legend:
Removed from v.87  
changed lines
  Added in v.96

  ViewVC Help
Powered by ViewVC 1.1.26