Quick and Dirty Apricot Emulator 0.0.4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Quick and Dirty Apricot Emulator 0.0.4 (Default branch)
# 1  
Old 09-05-2008
Quick and Dirty Apricot Emulator 0.0.4 (Default branch)

Image QDAE is an emulator supporting various 16-bit computers made by Apricot in the 1980s. These were non-IBM-compatible systems running custom versions of MS-DOS or CP/M. License: GNU General Public License v2 Changes:
A bug in the CPU emulation that prevented the game 'Snake' from running has been fixed. Speed regulation now applies to F-series machines as well as PC-series machines. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need a quick and dirty solution

I have a list of multiple versions of software. The list is formated as follows: NAME VERSION I simply need to pull out the highest version of each software, for example: Original File a v1.0 a v1.1 a v1.2 b v2.1 b v2.2 b v2.21 b v3.0 Output a v1.2 b v3.0 (13 Replies)
Discussion started by: Finja
13 Replies

2. Shell Programming and Scripting

Quick-and-dirty g++ compilation

I am creating a small bash file that will take one argument and compile it: #!/bin/bash OUT=${$1%.cpp} # C++ source files always end in .cpp g++ -Wall $1 -o $OUT chmod 777 $OUT The error message says 'bad substitution', namely where OUT is defined. How to fix this? (1 Reply)
Discussion started by: figaro
1 Replies
Login or Register to Ask a Question
COBERTURA-REPORT(1)					      General Commands Manual					       COBERTURA-REPORT(1)

NAME
cobertura-report -- generate coverage reports SYNOPSIS
cobertura-report [--datafile file] --destination dir [--format html|xml] [--encoding encoding] directory [--basedir dir] DESCRIPTION
cobertura-report generates coverage reports from the source code directories and calculates the cyclomatic code complexity of each class. The HTML reports are also made of annotated versions of each source file, showing which lines of code were excercised. OPTIONS
--datafile file Specify the name of the file containing metadata about your classes. Default value: "./cobertura.ser". --basedir dir Specify a directory containing source code. All files listed after this are assumed to be underneath this directory. This should only be used if you want to include only a few specific files underneath a source tree and exclude all other files. --destination dir Specify the output directory for the report. --format xml|html The type of report you want to generate. Default value: html. --encoding encoding Specify the encoding used to read the source. See javadocs for java.nio.charset.Charset for more details. SEE ALSO
junit(1), cobertura-instrument(1), cobertura-check(1), cobertura-merge(1). AUTHOR
This manual page was written by Miguel Landaeta <miguel@miguel.cc> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the terms of GNU General Public License, Version 2 or any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. COBERTURA-REPORT(1)