Welcome, Guest. Please login or register.

Author Topic: Just using this forum as a temporary storage, nothing to look at.  (Read 5182 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline T_Bone

  • Hero Member
  • *****
  • Join Date: Jun 2002
  • Posts: 5124
    • Show only replies by T_Bone
    • http://www.amiga.org/userinfo.php?uid=1961
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #14 from previous page: January 25, 2005, 12:35:02 AM »
shopping list

Eggs
Hamburger
Toilet paper
Milk
blackeyed peas (not the canned ones, last ones were slimey)
spinach
greens
rice (get uncle ben's this time)
bread
ibuprofin
coke
chili seasoning
ginger snaps (get more this time, keep running out)
Toilet paper
coffee
sugar cubes
half and half
OJ
Toilet paper
light bulbs
Toilet paper



this space for rent
 

Offline Speelgoedmannetje

  • Hero Member
  • *****
  • Join Date: Oct 2002
  • Posts: 9656
    • Show only replies by Speelgoedmannetje
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #15 on: January 25, 2005, 12:38:49 AM »
   list p=16f870
   include "p16f870.inc"

BACKUP_STATUS   EQU 0x20
BACKUP_W      EQU 0x21
testbyte      EQU 0x22
testbyte2      EQU 0x23
temp1         EQU 0x24
temp2         EQU 0x25
temp3         EQU 0x26
teller1         EQU 0x27

   org 0x00               ;standaard programmeer adres
   GOTO hoofdprogramma

   org 0x04               ;interrupt programmeer adres
   GOTO interrupt_afhandeling

;*****interrupt programma*****
interrupt_afhandeling:
   BTFSS PIR1, TMR1IF
   GOTO return_from_interrupt
   MOVWF BACKUP_W               ;Inhoud van W en STATUS tijdelijk opslaan
   MOVF STATUS, 0               ;
   MOVWF BACKUP_STATUS            ;
begin_interrupt:
   COMF testbyte, 0
   MOVWF PORTB
   GOTO einde_interrupt
einde_interrupt:
   BCF STATUS, IRP               ;selecteer geheugenbank 0/1 voor indirecte adressering
   BCF PIR1, TMR1IF
   MOVF BACKUP_STATUS, 0         ;tijdelijk opgeslagen waarden in W en STATUS terugplaatsen
   MOVWF BACKUP_STATUS            ;
   MOVF BACKUP_W, 0            ;
return_from_interrupt:
   RETFIE

;*****standaard programma*****
hoofdprogramma:
   ;BCF STATUS, IRP               ;selecteer geheugenbank 0/1 voor indirecte adressering
   
   MOVLW b'00001111'
   MOVWF PORTB
   MOVLW b'00001111'
   MOVWF testbyte
   CALL initialiseer_tijd                  
   CALL initialiseer_LEDS

einde_hoofdprogramma:
   GOTO einde_hoofdprogramma

initialiseer_tijd:   
   BCF STATUS, IRP               ;selecteer geheugenbank 0/1 voor indirecte adressering\
   ;BCF STATUS, RP0
   ;BCF STATUS, RP1
   BSF INTCON, GIE               ;activeer globale interrupt
   BSF INTCON, PEIE            ;activeer pheriperal interrupt
   BSF PIE1, TMR1IE            ;activeer timer interrupt
   BCF T1CON, T1CKPS0            ;selecteren prescale value (in dit geval 1:1)
   BCF T1CON, T1CKPS1            ;
   BSF T1CON, TMR1CS            ;selecteer externe klok, 20Mhz
   BSF T1CON, T1OSCEN            ;activeren oscillator
   CALL DELAY                  ;delay voor activeren oscillator
   BCF T1CON, T1SYNC            ;synchroniseer externe klok ingang
   BSF T1CON, TMR1ON            ;activeer timer
   RETURN

;*****open poorten voor aansturing van de LEDs*****

initialiseer_LEDS:
   ;BCF STATUS, IRP
   BCF STATUS, RP1               ;selecteer geheugenbank 1 voor directe adressering
   BSF STATUS, RP0               ;
   MOVLW 06h                  ;Poort A kan als analoog en als digitaal gebruikt worden
   MOVWF ADCON1               ;Met deze twee instructies wordt poort A als digitaal gebruikt
   BCF TRISA, 2               ;Poort A pin 2 in schrijfmodus
   CLRF TRISB                  ;Poort B in schrijfmodus
   BCF STATUS, RP1               ;Selecteer geheugenbank 0 voor directe adressering
   BCF STATUS, RP0               ;
   BCF PORTA, 2               ;stuur een opgaande flank naar poort A
   BSF PORTA, 2               ;voor aansturing van de LEDS
   RETURN

DELAY:               ; zorgt voor een vertraging (0,4 seconde)
   MOVLW teller1
   MOVWF temp1
seconden:
   CALL delay10
   DECFSZ temp1, 1
   GOTO seconden
   RETURN
delay10:            ; zorgt voor een vertraging (10 milliseconde)
   MOVLW d'100'      ; W register = decimaal 100
   MOVWF temp2
millis:               ; deze loop wordt  100 maal aangeroepen
   CALL delay100
   DECFSZ temp2, 1
   GOTO millis
   RETURN
delay100:            ; zorgt voor een vertraging van 486 cycli (100 microseconde)
   MOVLW d'162'
   MOVWF temp3         ; temp1 = 162
micros:               ; deze loop wordt 81 maal aangeroepen (3 * 162 cycli)
   DECFSZ temp3,1
   GOTO micros
   RETURN

einde:
   END

hmmmm... :inquisitive: now why doesn't it turn on the high bit LED's?
And the canary said: \'chirp\'
 

  • Guest
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #16 on: January 25, 2005, 12:42:00 PM »
I would have preferred you sent yourself a PM, that way you could delete it when you didn't need it, but whatever.
 

Offline Bodie_CI5

  • Hero Member
  • *****
  • Join Date: Oct 2003
  • Posts: 577
    • Show only replies by Bodie_CI5
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #17 on: January 25, 2005, 02:17:54 PM »
Quote

T_Bone wrote:
shopping list

Eggs
Hamburger
Toilet paper
Milk
blackeyed peas (not the canned ones, last ones were slimey)
spinach
greens
rice (get uncle ben's this time)
bread
ibuprofin
coke
chili seasoning
ginger snaps (get more this time, keep running out)
Toilet paper
coffee
sugar cubes
half and half
OJ
Toilet paper
light bulbs
Toilet paper



 :roflmao:  10/10 for that one!
Recovering WoW addict.

And, I\'ve relapsed, LOL.

Hmm, might be canceling again. LOL
 

Offline PMC

  • Hero Member
  • *****
  • Join Date: May 2003
  • Posts: 2616
    • Show only replies by PMC
    • http://www.b3ta.com
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #18 on: January 25, 2005, 02:23:39 PM »
10 PRINT "The Moderators Smell"
20 GOTO 10
RUN

Cecilia for President
 

Offline Karlos

  • Sockologist
  • Global Moderator
  • Hero Member
  • *****
  • Join Date: Nov 2002
  • Posts: 16879
  • Country: gb
  • Thanked: 5 times
    • Show only replies by Karlos
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #19 on: January 25, 2005, 02:28:10 PM »
Quote

Wayne wrote:
I would have preferred you sent yourself a PM, that way you could delete it when you didn't need it, but whatever.


So you can do that, eh? Strange, seems obvious in hindsight but that never occured to me before :-)
int p; // A
 

Offline PMC

  • Hero Member
  • *****
  • Join Date: May 2003
  • Posts: 2616
    • Show only replies by PMC
    • http://www.b3ta.com
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #20 on: January 25, 2005, 02:29:57 PM »
@T-bone

Maybe if you cut back on the eggs and chilli seasoning you wouldn't require that much toilet paper?
Cecilia for President
 

Offline x56h34

  • Hero Member
  • *****
  • Join Date: Sep 2003
  • Posts: 2921
    • Show only replies by x56h34
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #21 on: January 25, 2005, 02:40:20 PM »
Wayne, I think it's about time for you to create a Temporary Storage forum, as clearly the demand for it sky-rocketed. :-)
 

Offline Speelgoedmannetje

  • Hero Member
  • *****
  • Join Date: Oct 2002
  • Posts: 9656
    • Show only replies by Speelgoedmannetje
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #22 on: January 25, 2005, 02:48:26 PM »
@Wayne
I love this thread
it got a sense of humour :lol:
And the canary said: \'chirp\'
 

Offline T_Bone

  • Hero Member
  • *****
  • Join Date: Jun 2002
  • Posts: 5124
    • Show only replies by T_Bone
    • http://www.amiga.org/userinfo.php?uid=1961
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #23 on: January 25, 2005, 07:24:18 PM »
Quote

PMC wrote:
@T-bone

Maybe if you cut back on the eggs and chilli seasoning you wouldn't require that much toilet paper?


Barring that, I could just add more cheese to the chili!

T-BONE'S LILLINGTON CHILI

1 lb dry kidney beans soaked in 1 1/2 cups water overnight (keep water)
1 can diced tomatoes
2 cans beer (not light beer)
1 1/2 lb cooked ground beef (do not drain grease)
5 tbsp apple cider vinegar
2 pckt chili or taco seasoning (Chipotle based taco mix works best)
2 tsp kosher non-iodized sea salt (iodised has a chemical aftertaste)
1 tsp ground black pepper
1 tsp ground red pepper
1/2 tsp cumin
6 Ginger snaps
1 tsp minced garlic
3 tbsp Jamaican Hellfire hot sauce
5 strips cooked bacon, diced (do not drain grease)
1 tsp worchester(sp?) sauce
1 tbsp butter

Throw everythng, grease and all, into 6 qt crockpot and slow boil for 6 hours. When done, should be watery and smell like vinegary B.O., refrigerate then reheat. (this thickens it)
 Best served with cornbread and coleslaw.
this space for rent
 

  • Guest
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #24 on: January 25, 2005, 08:06:34 PM »
Quote
When done, should be watery and smell like vinegary B.O.
Not my first choice in chili...

Also, too extravagant for chili... :)

Wayne’s Idea of Chili

1 can Rotel's Chilis and Tomatoes (Do Not Drain)
1 (28 ounce) can tomato sauce
1/2 cup chopped Onions
1 (15 ounce) can dark red kidney beans
2 lb. ground beef
chili powder to taste

Brown ground beef and drain well. Stir in remaining ingredients EXCEPT for chili powder.  Bring to a boil, add chili powder taste, then cover and let simmer over LOW heat for about 45 minutes to an hour.

Optional:  The magic ingredients to give Melissa's chili the spicy touch are Cumin and Crushed Red Pepper.  They can make or break the chili but be careful, a little goes a LONG way.
 

  • Guest
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #25 on: January 25, 2005, 08:34:50 PM »
Quote
Wayne’s Idea of Chili

I forgot, the better way to make this is to brown the onions and meat, then dump it all in a crockpot on low for 6 to 8 hours.  The longer it goes, the better it tastes.  I even recommend taking it off the heat and refrigerating it overnight.  While great after 6 hours in a crockpot, it's even better the second day.

Wayne
 

Offline PMC

  • Hero Member
  • *****
  • Join Date: May 2003
  • Posts: 2616
    • Show only replies by PMC
    • http://www.b3ta.com
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #26 on: January 25, 2005, 10:41:17 PM »
Quote

T_Bone wrote:
3 tbsp Jamaican Hellfire hot sauce


:-o

Sounds like a recipe for "Johnny Cash Syndrome" to me.

T_Bone I'll remember that for my mate's barbecue, although the Jamaican Hellfire hot sauce sounds pretty exotic...  Must try and get some ;-)

BTW if you like your food spicy, have you tried Britain's national dish lately?

Can't beat a good curry and a chilli loving chap like you would probably get on well with a beef madras, complete with Pashwari Naan bread, mushroom bhaji and a few glasses of good old Kingfisher Lager.

Next time you're in the vicinity of the UK, we'll have to organise an A.org curry night....

Cecilia for President
 

Offline whabang

  • Hero Member
  • *****
  • Join Date: Mar 2002
  • Posts: 7270
    • Show only replies by whabang
Re: Just using this forum as a temporary storage, nothing to look at.
« Reply #27 on: January 26, 2005, 08:10:52 AM »
Quote
6 Ginger snaps

Jägermeister?!?!? :-o
Beating the dead horse since 2002.