Code covered by the BSD License  

Highlights from
Extended Brookshear Machine emulator and assembler

image thumbnail
from Extended Brookshear Machine emulator and assembler by David Young
Emulator and assembler for a simple computer, a teaching aid for computer science courses.

showhelp(name)
function showhelp(name)
%SHOWHELP displays a help file
%   SHOWHELP(NAME) displays the file NAME.HTML in the HTML directory below
%   the directory containing this m-file.

%   Copyright 2008 University of Sussex and David Young

fname = mfilename('fullpath');
path = fileparts(fname);
hfile = fullfile(path, ['html/' name '.html']);
web(['file:///' hfile], '-notoolbar');
end

Contact us at files@mathworks.com