-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogramming.html
More file actions
48 lines (46 loc) · 1.92 KB
/
programming.html
File metadata and controls
48 lines (46 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Programming - Obelisk by Andrew Jacobs</title>
<link rel="StyleSheet" href="obelisk.css" type="text/css" media="screen,print"/>
</head>
<body>
<div class="page-wrapper">
<nav class="sidebar" id="sidebar"></nav>
<main class="content">
<h1>Programming</h1>
<p>This section contains information about programming in various languages
some obsolete or esoteric and others still very much alive.</p>
<p>Many software engineers beginning work today will only ever
work with high level, object oriented programming languages like
Java and C++. They will never know the deep joy (and massive frustration)
of taking on a microprocessor in the 'hand-to-hand' combat that
is assembly language programming.</p>
<p>It concerns me that some of the skills and tricks that where quite common place
when I started my career as code monkey are completely
over looked today. Some of the forum posts I see by Computer Science and Electrical Enginering
students make me wonder if they still teach binary.</p>
<p>
These pages contain descriptions of the processors and languages that I used
to program, or still do through emulation, and record some the
common techniques and tricks need to produce tight, compact code.</p>
<hr/>
<h2>Skip to:</h2>
<ul>
<li><a href="6502/index.html">6502</a></li>
<li><a href="65c02/index.html">65C02</a></li>
<li><a href="cesil/index.html">CESIL</a></li>
<li><a href="vhdl/index.html">VHDL</a></li>
</ul>
<hr/>
<p class="timestamp">This page was last updated on 17th September 2009</p>
<p class="copyright">
© Copyright 2009 <a href="http://forum.6502.org/viewtopic.php?t=6466">Andrew John Jacobs</a>. All rights reserved.<br />
All trademarks and service marks are the properties of their respective owners.</p>
</main>
</div>
<script src="sidebar.js"></script>
</body>
</html>