Design
softsyn.txt
Associated article: Software Synthesis for OS-Independent Coding
Tags: Design
Published source code accompanying the article by Bob Zeidman in which he introduces the concept of software synthesis which lets you hide low-level implementation details from programmers.
Software Synthesis for OS-Independent Coding
by Bob Zeidman
Example 1:
(a)
taskLed (g_in, rotation);
(b)
// SynthOS: begin generated code
// original statement: taskLed (g_in, rotation);
// Create a new TCB.
{
struct SYNTHOS_TCB *stcpNewTcb;
stcpNewTcb = getFreeTcb(g_stcpTcbQ__taskLed);
// make sure ...


