SyntaxHighlighter.brushes.Custom = function()
{
	var keywords    = 'D M MD A AM AD AMD null';
	//var ops = '@ + -';
	
	this.regexList = [
		{ regex: SyntaxHighlighter.regexLib.singleLineCComments,	css: 'comments' },	// single-line comments
		{ regex: new RegExp(this.getKeywords(keywords), 'gm'),		css: 'keyword' }	// keywords
		/*{ regex: new RegExp(this.getKeywords(ops), 'g'),			css: 'color1' }*/	// operators
	];
};
 
SyntaxHighlighter.brushes.Custom.prototype = new SyntaxHighlighter.Highlighter();
SyntaxHighlighter.brushes.Custom.aliases  = ['hackasm'];
