Here goes. This code snippet shows the 5 latest post titles in ascending order. By changing the number 5 in ‘showposts=5’ you can show any number of posts. (-1 shows all posts).
<!-- LATEST POSTS START -->
<?php query_posts('showposts=5&orderby=post_date&order=ASC'); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>
<!-- LATEST POSTS END -->