Using standalone vs. opensolaris for running programs in FPGA model?!

Was anyone able to do anything other than print a simple string using a standalone program in the openSPARC FPGA implementation? If so, would you please share your experience and what tools/libraries did u make use of?
I am hitting a limitation in running even basic applications because I have NO libraries to access not even <stdlib.h>.
For those out there using opensolaris to run your applications, did u need to install peripheral drivers? Do u have access to timers and other peripherals? Also, do u ftp ur C applications or do u build them in ur solaris sysACE file?
Help is very much appreciated.
Thanks,
Faycel

got same problem here. I was thinking to add input feature so that user can type input via hyper terminal and get result. I was using scanf but it is very difficult to add this syntax. I got errors. If you notice, the /examples/src/libc contains only printf.c file. we need to add scanf.c file in order to use scanf syntax. but I couldnt find how.
Below is the links that provide source codes for scanf (and others).
[http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/stdio/scanf.c]
[http://www.koders.com/c/fid4E0FA789459803C1E4369279B96E5C9B257941C8.aspx?s=printf#L7]
let me know if you can run your own program on FPGA Opensparc T1.
Thanks.

Similar Messages

  • Checking for running programs using a abap program

    Is there a way in ABAP to detect from within a program that another process is running the same program? Meaning if PROG1 is running, could PROG1 check to see if another process is running program PROG1?

    Use the locking concept.   You can either create your own, or a popular one to use is ESINDX, passing parameters: relid 'ZZ', SRTFD program name, and SRTF2 = 0. 
    The logic is:
    Attempt to get lock (FM ENQUEUE_ESINDX, perhaps).
    If lock got -> run program
    If lock not got -> quit.
    You have to put this logic at the start of your program.
    matt

  • Cannot write the suitable source codes for running program

    I want to write a program that help student to compile program and run program by using some test cases. For the compiled part, i have been wrote it successfully, but for the run part, i cannot pass the test cases to the program for running. Could any ppl help me to find the problem on the followng codes, why the error will on there? how do i change it? Thanks!
    //<!--start get Program Test Case File-->
    java.io.BufferedReader TestCaseBuf = null;
    Connection con = null;
    Statement stmt = null;
    ResultSet rs = null;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con = DriverManager.getConnection("jdbc:odbc:compas", "sa", "password");
    stmt = con.createStatement();
    String strSQL = "SELECT testValue FROM TEST_CASE WHERE progID='"+progID+"'";
    stmt = con.createStatement();
    rs = stmt.executeQuery(strSQL);
    try
    while (rs.next())
    TestCaseBuf = new java.io.BufferedReader(new java.io.InputStreamReader(rs.getBinaryStream("testValue")));                         
    finally
    if (rs != null)
         rs.close();
    if (stmt != null)
         stmt.close();
    //<!--end get Program Test Case File-->
    //<!--start run program -->
    String[ ] args2 = new String[ ]
         "java", "-cp", System.getProperty("user.dir"), FileName
    try
         Runtime rt = Runtime.getRuntime();
         Process proc = rt.exec(args2);
         java.io.BufferedReader ireader = new java.io.BufferedReader(new java.io.InputStreamReader(proc.getInputStream()));
         java.io.PrintWriter pwriter = new java.io.PrintWriter(proc.getOutputStream());
    String atestcase = null;
         String line= null;
         try
    while ((atestcase = TestCaseBuf.readLine()) != null) <------------I found that error seems on here!!!!
         pwriter.write(atestcase+"\r");
    pwriter.flush();     
    if (atestcase != null)
              if ((line = ireader.readLine()) != null)
              FileOutput = FileOutput + line +"\r\n";
    else {break; }
         } //while
         catch (java.io.IOException e)
         out.println("[IOException]. Printing Stack Trace");
         e.printStackTrace();
         pwriter.close();
         ireader.close();
    catch (java.io.IOException e)
    out.println("[IOException]. Printing Stack Trace");
    e.printStackTrace();
    //<!--end run program -->

    Whats the error message??
    Just a guess, but could be (without seeing the error) that you've already closed the TestCaseBuf reader by closing the result set, hence when you go to read it, you're reading on closed reader.
    Give this a go...Put the //<!--run program --> code into the result set while loop
    while (rs.next())
    TestCaseBuf = new java.io.BufferedReader(new java.io.InputStreamReader(rs.getBinaryStream("testValue")));
    //<!--start run program -->
    ...some code
    //<!--end run program -->
    } Hard to tell without the error message

  • Log for running programs

    Given a program name, is there a way for me to check if it has already been executed?
    There is a number of conversion programs that are recommended by SAP to run after upgrade and I would like to aviod running them twice for fear of negative impact.

    Hi Jeremy,
    Hope you can check it through the Table CDHDR or CDPOS with the Transaction name or Use the Transaction RSSCD100 and give the appropriate Object Class and check for the Execution date if it has created/Change entry done before.
    Hope it solves your query.
    Regards
    Andrew
    Edited by: Andrew J on Jun 5, 2009 3:11 PM

  • Can I use my Time Capsule to run programs?

    I have a program that takes up a lot of disk space, is it possible for me to install it onto my TC and run it from there onto my MacBook Pro?

    RosarioMC, Welcome to the discussion area!
    If I understand correctly, you want to install this application on the Time Capsule's hard drive. Then launch the program from your MacBook Pro?
    That should work but it may be slow to load and maybe even to run.
    Does this application really take up a lot of disk space, or is it the data files that take up a lot of disk space?

  • HT2493 I have a jpg file the image of which I wish to use as an icon for a program.

    when I use the advised strategy of copying its icon to the icon in the info page of the program, I get a change -- but to the generic icon for jpg files, rather than the actual image of the content of the particular file.

    You can convert the jpeg file to an icon file and use that as the image, with this application: img2icns
    Drag the jpg onto img2icns window, save it as an icon. Copy and paste this as per the method you mentioned previously.
    tested to work on 10.6.8

  • Check system for running program

    Hello,
    I'm putting together a java application that is supposed to lunch another program (matlab). However I need to first check to see if the program has been started from outside my java application. Is there any way to queery the system to find out if there is a program running.
    I'm working in the windows environment
    Thanks,
    Michael
    [email protected]

    Thanks for the hints, I'm now trying to query the windows Task manager to find out if there is an active copy of the matlab application running.
    On your suggestion to check for a matlab API, I have looked into thier supported API functions but they are all beta and rather buggy.
    Thanks,
    Michael

  • Using Forms as Interface for Unix Program

    I am trying to develope an interface for a unix program that demands input from the database. Is it possible to do that? How can I initiate the Unix program from within Forms?
    Thanks

    hi,
    have a look to the HOST build-in-function ;-)
    e.g. HOST('myprog para1 para2');
    Regrads
    biki

  • Using dymanic table name for running select queries

    Hi there. Currently got a problem with performing the following task:
         Perform fulltext search on all tables that have created fulltext indexes in specific schema. Result should look like this:
              <TABLE_NAME1>                <ID_FROM_TABLE>
              <TABLE_NAME1>                <ID_FROM_TABLE>
              <TABLE_NAME2>                <ID_FROM_TABLE>
              <TABLE_NAME2>                <ID_FROM_TABLE>
         At the moment all tables have the same ID column UOI_ID.
    What I've tried so far is the following:
    PROCEDURE "tuser"."dam.test.db.procedures::textSearch" ( in keyword NVARCHAR(300), out search_results "tuser"."dam.test.db::tuser.procedures.tt_search_results" )
      LANGUAGE SQLSCRIPT
      SQL SECURITY INVOKER
      DEFAULT SCHEMA "tuser"
      AS
    BEGIN
      Write your procedure logic
      DECLARE counter Integer := 1;
      DECLARE row_count Integer;
      DECLARE table_name NVARCHAR(300);
      DECLARE schema_name NVARCHAR(300) := 'tuser';
      indexed_tables = SELECT row_number() OVER (ORDER BY "TABLE_NAME") AS ROW_NUMBER, "TABLE_NAME"
           FROM (
                SELECT DISTINCT "TABLE_NAME"
                     FROM "SYS"."FULLTEXT_INDEXES"
                          WHERE "SCHEMA_NAME" = :schema_name
      SELECT COUNT(*) INTO row_count FROM :indexed_tables;
      WHILE counter < row_count + 1 DO
           SELECT '"tuser"."'||"TABLE_NAME"||'"' INTO table_name FROM :indexed_tables WHERE "ROW_NUMBER" = :counter;
           temporary_results = SELECT :table_name AS TABLE_NAME, "OUI_ID" AS ID
                FROM :table_name
                     WHERE contains(*, :keyword, fuzzy(0.5));
           search_results = CE_UNION_ALL(:search_results, :temporary_results);
           counter := counter + 1;
      END WHILE;
    END;
    At this point it's impossible to perform the:
    ... FROM :table_name ...
    The error is:
    Could not create catalog object: scalar type is not allowed
    Tried doing it with CE functions.
    temporary_table = CE_COLUMN_TABLE(table_name);
    The error is:
    Dependent object not found: SqlScript; tuser.TABLE_NAME
    So the question is: How to dynamically put table name into "FROM ..." statement?

    Hello. Thx for response.
    I have tried something like
    exec 'INSERT INTO "tuser"."dam.test.db::tuser.procedures.search_result" SELECT '''||table_name||''' AS TABLE_NAME, '||column_name||' AS ID, SCORE() AS SCORE  FROM '||table_name||' WHERE contains(*, '''||keyword||''', fuzzy(0.5))';
    but here i have "tuser"."dam.test.db::tuser.procedures.search_result" created before the execution. What i really want is to make it as a local variable. Something like:
    DECLARE schema_name NVARCHAR(300) := 'tuser';
    indexed_tables = SELECT DISTINCT "TABLE_NAME" FROM "SYS"."FULLTEXT_INDEXES" WHERE "SCHEMA_NAME" = :schema_name ;
    but i can not transform the top 'exec ...' statement into 'result = SELECT ...' because it always says that it can not pass the scalar value into the 'FROM ...' part.

  • Can i use dr.dre tour for my ipod shuffle 3rd model?

    Pls let me know~ thanks yall

    The product page only mentions the Mic
    http://www.beatsbydre.com/earphones/beats-tour/beats-beatstour,default,pd.html
    Which of course does nothing for the 3rd gen shuffle, you need an ear bud that has a "remote" built in specifically for the 3rd gen shuffle or newer, you'll want to double check the compatbility since not all "remotes" are compatible with the 3rd gen shuffle, for example Apple's EarPods are not compatible.

  • Best Optimization settings on my PC for running Creative Suite programs?

    Hi, I just downloaded the Creative Suite on my PC. I am afraid the my PC is not currently set for best optimization for running programs such as Photoshop and After Effects. While working in After Effects I had problems with pixelated images. I'm working with a Lenovo (IBM), Intel (R) Pentium (R) CPU G2030 3.00 GHZ Processor, 4.00 gb of RAM (3.90 available currently), 64 bit OS, x64 based processor. I know it's not the ideal system, but I don't use it for anything else but the Creative Suite. Any suggestions besides pitching it and purchasing a mac?

    Sorry it was while working in Photoshop that I experienced pixelated images.

  • 8GB ram plenty for running Logic 9?

    After dealing with my computer only booting in safe mode, getting new ram and finding out that the problem was my graphics card, I upgraded my Mac Pro 1.1 with the ATI 5770. (OS is Lion 10.7.5) In the process I ended up buying 4 times 2GB ram. I still have 2time 1GB that work fine. Should I stick to only using the new ram (8GB) or is there any point in keeping my old 2 GB and running 10GB. I use the computer mainly for running Logic 9. It was getting slow and kept getting stuck here and there with my previous 4GB. I work on commercials at times and link video but don't actually do any video editing.
    Thanks for any suggestions.
    Very happy with my new graphics card, btw..thanks to Hatter!
    Matt

    Use the new RAM. The stuff from Amazon is nice and using all the same set IS best policy.
    New on A1:2 and whatever else in B1:2
    4 or 8 DIMMs is what you want to use. There is small higher latency using 6 or 8.
    For best performance on Mac Pro, install memory in risers symmetrically
    The Mac Pro comes with two memory riser cards, each with four DIMM slots. With a total of eight slots, you can add up to 16 GB of memory.
    Note: DIMMs must be installed in pairs of equal size from the same vendor. For instance, you must not have one or three DIMMs on either riser at any time. Additionally, two DIMMs from different vendors should not be combined and used as a pair.
    Other configurations of DIMM pairs are still compatible with Final Cut Studio, but may not achieve the same performance levels as when DIMM pairs are installed on both risers evenly.
    Riser A contains:
    Riser B contains:
    2 x 512MB
    2 x 512MB
    2 x 1GB
    2 x 1GB
    2 x 2GB
    2 x 2GB
    4 x 512MB
    4 x 512MB
    4 x 1GB
    4 x 1GB
    4 x 2GB
    4 x 2GB
    https://support.apple.com/kb/TS1957

  • JSP codes for running a JAVA program

    hello...
    does anyone know the JSP codes for running a Java program from my web page?? i mean i already have my java program compiled... and i just want this java program to run in the background when I click on a button or a link...
    Any idea about this?
    plz advice..
    avi

    yes... u r somewhat right... but this runs on Jakarta Tomcat...
    i'm using the Apache Http Server together with the ServletExec AS which enable the Apache server to run JSP..
    I've created a package where i've put my classes...
    WEB-INF/classes/tbd(package name)/my classes
    and i've added.. package name.. in my java program..
    and then in jsp... i've written..
    <%@ page import="tdb.*"%>
    <jsp:useBean id="exec" class="tdb.textdb" />
    <%exec.convert_data();%>
    but when i run the page it says the package does not exist...
    can anyone tell where to place the folder WEB-INF so that it can run fine?
    thx
    avi

  • Ever since the systyem upgraded me to 3.6.6. I can not even run one eight hour day without firefoc either crashing or locking up which requires me use C/A/Deleate to close the program. I used to be able to run 8 to 12 windows at a time and NEVER lock up

    Ever since the systyem upgraded me to 3.6.6. I can not even run one eight hour day without firefoc either crashing or locking up which requires me use C/A/Deleate to close the program. I used to be able to run 8 to 12 windows at a time and NEVER lock up or crash with the older version. Is this problem being looked into and or being corrected. I use Firefox with Google and my system is XP Pro 32 bit. THIS IS REALLY making me MAD. My email is [email protected] and would appreciate a response to this ASAP. I have tried a couple of items from your help section and nothing works.

    <u>'''Anonymous'''</u>
    Please post a separate question. Thank you. https://support.mozilla.com/tiki-ask_a_question.php?locale=en-US&forumId=1
    <u>'''chris'''</u>
    <u>'''''Crashing'''''</u>
    See:
    http://support.mozilla.com/en-US/kb/Firefox+crashes
    http://kb.mozillazine.org/Firefox_crashes
    http://support.mozilla.com/en-US/kb/Firefox+crashes+when+loading+certain+pages
    http://support.mozilla.com/en-US/kb/Firefox+crashes+when+you+open+it
    http://support.mozilla.com/en-US/kb/Firefox+will+not+start
    http://kb.mozillazine.org/Browser_will_not_start_up
    ''<u>'''Hanging'''</u>''
    See: http://support.mozilla.com/en-US/kb/Firefox+hangs
    <u>'''''Hanging at exit'''''</u>
    <u>'''Kill Application'''</u>
    In Task Manager, does firefox.exe show in the <u>'''Processes'''</u> tab?
    See: [http://kb.mozillazine.org/Kill_application Kill Application]
    '''<u>Causes and solutions for Firefox hanging at exit:</u>'''
    [[Firefox hangs]]
    [http://kb.mozillazine.org/Firefox_hangs#Hang_at_exit Firefox hangs at exit]
    [[Firefox is already running but is not responding]]
    ''<u>'''Safe Mode'''</u>''
    You may need to use '''[[Safe Mode]]''' (click on "Safe Mode" and read) to localize the problem. Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes <u>'''before'''</u> starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    See:
    '''[[Troubleshooting extensions and themes]]'''
    '''[[Troubleshooting plugins]]'''
    '''[[Basic Troubleshooting]]'''
    If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it by enabling <u>'''one at a time'''</u> until the problem reappears. <u>'''You MUST close and restart Firefox after EACH change'''</u> via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.
    <u>'''chris'''</u>
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''Update Java'''</u>: your ver. 1.6.0.~~red:17~~; current ver. 1.6.0.20 (<u>important security update 04-15-2010</u>)
    (Firefox 3.6 and above requires Java 1.6.0.10 or higher; see: http://support.mozilla.com/en-US/kb/Java-related+issues#Java_does_not_work_in_Firefox_3_6 )
    ''(Windows users: Do the manual update; very easy.)''
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.
    <u>'''NOTE:'''</u> Java version 1.6.0.21 has been released. It is mainly an update for developers of Java applications and most users do not need to be concerned about downloading version 1.6.0.21. <u>'''''At this time'''''</u>, the update option in existing installations of Java 1.6.0.20 are not updating to version 1.6.0.21; <u>'''''at this time'''''</u>, it must be manually downloaded and installed. According to the Java release notes:
    ''"'''Bug Fixes'''''
    ''Java SE 6 Update 21 does not contain any additional fixes for security vulnerabilities to its previous release, Java SE 6 Update 20. Users who have Java SE 6 Update 20 have the latest security fixes and do not need to upgrade to this release to be current on security fixes."'' Source: http://java.sun.com/javase/6/webnotes/6u21.html
    <u>'''Install/Update Adobe Flash Player for Firefox (aka Shockwave Flash)'''</u>: your ver. 10.0 r~~red:45~~; current ver. 10.1 r53 ('''important security update 2010-06-10'''; see: http://www.adobe.com/support/security/bulletins/apsb10-14.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: '''[http://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin#Updating_Flash Updating Flash]'''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    -exit Firefox (File > Exit)
    -''<u>In Windows,</u>'' check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -''<u>In Windows,</u>'' double-click on the Adobe Flash installer you just downloaded to install/update Adobe Flash
    -when the Flash installation is complete, start Firefox, and test the Flash installation here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15507&sliceId=1
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version of Flash. To install/update the IE ActiveX Adobe Flash Player, same instructions as above, except use IE to download the ActiveX Flash installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Flash ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]
    <u>'''Update Shockwave for Director (aka Shockwave Player)'''</u>: your ver. ~~red:10.1 (very old)~~; current ver. 11.5.7.609 (<u>important security update released 2010-05-11</u>; see http://www.adobe.com/support/security/bulletins/apsb10-12.html)
    NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    SAVE the installer to your hard drive (Desktop is a good place so you can find it). When the download is complete, exit Firefox (File > Exit), locate and double-click in the installer you just downloaded, let the install complete.
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox#_Installing_Shockwave Installing Shockwave]'''
    <u>'''You '''</u>~~red:<u>'''MAY'''</u>~~<u>''' need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Open the Adobe Reader installed on your system (''in Windows, Start > Program Files, find and click Adobe Reader to open''), click Help, click Check for Updates.
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -In Windows: check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -In Windows: double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • Payment Run program for china country code

    Hi all,
    We have a requirement where, after running a payment program we need a generate a dme file. till now we were using rffod__u which is for derman,
    But our requirement is for china.
    Can anyone suggest which is the payment run program that is used for china.
    Please give replies as early as possible
    Thanks and Regards
    Veda

    Hi,
    you can go to F110 T.CODE
    Run date:Todays date
    Identification:Country and any number.
    It should help you.
    *reward points if it useful.
    regards

Maybe you are looking for

  • How to connect new iMac to TV???

    I'm not very computer savvy... is there an easy way to connect my new iMac to my tv directly with one cable, like and HDMI cable or something? Or is it much more complicated than this?

  • Interactive Report Download CSV file Issue (output includes separator BR)

    Hi, I have a Interactive Report and displaying the column values (multiple values in same ROW) as mentioned below. SQL Query   select deptno,        function1(empno) empno   from emp IR Output Dept       Employee No 10         AAA,BBB,CCC, ...    //

  • QTPro 7 won't open image sequence?

    I recently bought a new ASUS computer with Windows 7 and added QTPro7 to create .mov's from jpg image sequences. I've done it numerous times on my older HP6226 with Windows Vista. It works sometimes, but not others and I can't see why...i.e. I tell i

  • Oracle 9i in RedHat 7.2

    Exception thrown from action: make Exception Name: MakefileException Exception String: Error in invoking target toolsinstall of makefile /opt/oracle/product/9.0.1/ldap/lib/ins_ldap.mk Exception Severity: 1 Calling action unixActions2.0.1.4.0 make ins

  • Flash CS3 Tutorials

    Hey guys, check out my new site on Flash Tutorials. I am looking for a few reviews while the site is still under construction. I am adding a new tutorial every couple of day and I will work on a specific Flash Tutorial if you just tell me what you wa