Search found 35 matches

by Helpdesk
Sat Mar 12, 2011 5:38 am
Forum: Getting Started
Topic: Info example says the LPC2103 only has 8k
Replies: 1
Views: 19308

Info example says the LPC2103 only has 8k

I don't understand the output from Info.mod

It says Memory Available 7140 - but Info.map shows only something like 8000 bytes used in total and the 2103 has 32K.... Where did the rest go?
by Helpdesk
Tue Feb 01, 2011 11:03 am
Forum: Oberon Language
Topic: Convert CHAR to INTEGER
Replies: 1
Views: 11694

Convert CHAR to INTEGER

How do I convert a CHAR (from serial input) to an INTEGER?
by Helpdesk
Mon Jan 03, 2011 11:06 pm
Forum: Oberon Language
Topic: Forward Procedures
Replies: 1
Views: 12619

Forward Procedures

How do I declare a forward Procedure? The declaration:

Code: Select all

PROCEDURE ^P(i: INTEGER);
Results in the error message "no ;" at the ^.
by Helpdesk
Mon Jan 03, 2011 12:14 pm
Forum: Getting Started
Topic: IMPORT Main?
Replies: 1
Views: 16224

IMPORT Main?

Where is it defined what user start-up function is called by the import "main()" ?
by Helpdesk
Mon Jan 03, 2011 6:01 am
Forum: Oberon Language
Topic: Shifts and masks
Replies: 3
Views: 20919

Shifts and masks

How is the best way to do the Pascal equivalent of:

Code: Select all

R := ( R shr 6) and $3FF;